
::-moz-selection {
    background: rgb(255 226 217/50%)
}

::selection {
    background: rgb(255 226 217/50%)
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-os-font-smoothing: grayscale;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: 0;
    vertical-align: baseline
}

body {
    font-family: "Roboto", sans-serif;
    color: #000000;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    background-color: rgb(24 119 242 / 5%);
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    padding: 0;
    margin: 0
}

a {
    color: #374957;
    text-decoration: none;
    background-color: transparent
}

ul {
}

a:hover {
    text-decoration: none;
    color: initial
}

button:focus {
    outline: 0 !important
}

p~p {
    margin-bottom: 15px;
}

.heading {
    text-align: center;
    margin-bottom: 60px;
}

.heading h1 {
    margin-bottom: 15px;
    font-size: calc(1rem + 1vw);
    font-weight: 600;
}

.heading h2 {
    margin-bottom: 15px;
    font-size: calc(1rem + 1vw);
    font-weight: 600;
}

.heading h2 b {
    color: #5551ff;
}

.button {
    font-size: 16px;
    padding: 17px 30px;
    background-color: #5d5fef;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
    border: 0;
    font-weight: bold;
    transition: all 0.3s 0s;
}

.button:hover {
    background-color: #00b1dd;
    color: #fff;
}

.gray_btn {
    background-color: #fafafa;
    color: #212529;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.form-control {
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    height: 50px;
    color: #000;
    border: 1px solid #ECEFF1;
    font-size: 16px;
    font-weight: 500;
}

.form-control:focus {
    box-shadow: none !important;
    color: #000000;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
    -webkit-text-fill-color: #000;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
    transition: background-color 5000s ease-in-out 0s;
}

.form-group label {
    color: #85919C;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.form-group {
    margin-bottom: 1rem;
    position: relative;
}

.form-group .input_icon_a {
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: #85919C;
    height: 42px;
    line-height: 42px;
    width: 40px;
    text-align: center;
    font-size: 20px;
}

.ri-spin {
    animation: 2s linear infinite ri-spin;
    display: inline-block;
}

@keyframes ri-spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

img {
    max-width: 100%;
}

a {
    transition: all 0.3s 0s;
}




/*Login start*/

.account {
    display: flex;
    width: 100%;
    flex-direction: row;
    background-image: url(../img/blue_bg_1.svg);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}

.account_img {
    text-align: center;
}

.account_img img {
    width: 100%;
    max-width: 480px;
    animation: zoom-in-zoom-out 5s ease-out infinite;
}

.account_data {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    height: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.account_data p {
    text-align: center;
    font-size: 15px;
    color: #85919C;
    margin: 10px 0px 0px 0px;
    font-weight: 500;
}

.account_data p a {
    color: #000;
    font-weight: bold;
}

.account_data p a:hover {
    color: #85919C;
}

.account_data_box h1 {
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3px;
    font-size: 32px;
}

.account_data_box h5 {
    color: #85919C;
    text-align: center;
    font-size: 16px;
    margin-bottom: 32px;
}

.account_data_box .form-group-inner {
    text-align: end;
}

.account_data_box .form-group-inner a {
    font-weight: bold;
    color: #000;
}

.account_data_box .form-group-inner a:hover {
    color: #85919C;
}

#captcha_theme {
    margin: 30px auto;
    display: table;
}

.account_data_box .input-groups {
    position: relative;
}

.account_data_box .input-group-texts {
    position: absolute;
    top: 12.5px;
    left: 15px;
    font-size: 20px;
}

.account_data_box .input-group-texts img {
    width: 100%;
    max-width: 20px;
    padding: 0px 4px 0px 0px;
    right: inherit;
}

.input-groups button, .input-groups div {
    font-size: 14px;
    position: absolute;
    top: 13px;
    right: 10px;
    padding: 2px 10px;
    border-radius: 4px;
    background: linear-gradient(60.87deg, #31CDB0 -11.65%, #2C8EC4 50.69%, #3551A4 113.26%);
}

.account_data_box .form-control {
    padding: 10px 15px 10px 50px;
}

.account_data_box .form-control_verification {
    padding: 10px 125px 10px 40px;
}

.account_data_box .form-control:focus .input-group-text {
    border-color: #00bff3;
}

.account_tab {
    margin-bottom: 30px;
}

.account_tab .nav-tabs {
    border-bottom: 0px;
    justify-content: center;
    flex-wrap: nowrap;
}

.account_tab .nav-tabs .nav-link {
    border: 0;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

.account_tab .nav-tabs .nav-item.show .nav-link, .account_tab .nav-tabs .nav-link.active {
    color: #fff;
    border-bottom: 2px solid #00bff3;
    background-color: transparent;
}

.account_tab .nav-justified .nav-item {
    -ms-flex-preferred-size: 0;
    flex-basis: auto;
    -ms-flex-positive: 1;
    flex-grow: 0;
    text-align: center;
    margin: 0px 38px;
}

.account_tab .nav-tabs .nav-link:focus, .account_tab .nav-tabs .nav-link:hover {
    color: #00bff3;
}

.account_tab .nav-link {
    display: block;
    padding: 3px 0px;
}

.account_left {
    background-color: #eceff1;
    padding: 50px;
    flex: 0 0 600px;
    width: 600px;
    position: relative;
    min-height: 100vh;
    background-image: url(../img/blue_bg_1.svg);
    background-position: right center;
    background-size: cover;
}

.account_logo img {
    max-width: 200px;
    width: 100%;
}

.account_left h1 {
    font-weight: bold;
    margin-top: 60px;
}

.account_left h2 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 40px;
}

.loading i {
    margin-top: -7px;
    margin-left: 5px;
}

.account_data_box {
    margin-bottom: 15px;
}

.account_data_box p {
    font-size: 16px;
    margin: 30px 0px 14px 0px;
}

.account_data_box_detail {
    background: #fff6f6;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgb(255 0 0 / 5%);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid red;
    border-left: 4px solid red;
}

.account_data_box_detail p {
    text-align: left;
    padding: 0;
    margin: 0;
    color: #6e0000;
}

.qr_mobile {
    position: relative;
    display: flex;
    align-items: center;
}

.invisible-qr {
    filter: blur(2px);
    opacity: .3;
}

.account_qr_code {
    border-radius: 4px;
    padding: 20px;
    position: relative;
    left: 150px;
    background-color: #5d5fef;
    box-shadow: 20px 20px 50px rgb(0 0 0 / 10%);
    color: #fff;
}

.qr_code_details {
    position: relative;
    max-width: 180px;
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-right: 20px;
}

.qr_code_details .bg_loader {
    position: absolute;
    top: 0px;
    left: 0px;
}

.qr_code_data h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.qr_code_data ul {
    list-style: auto;
    padding-left: 15px;
}

.qr_code_data li {
    color: #fff;
    margin: 15px 0;
    font-weight: 500;
    line-height: normal;
}

.reloadQr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / 50%);
}

.reloadQr p {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    color: #000;
}

.qr_btn {
    padding: 6px 16px;
    border-radius: 4px;
    color: #000;
    transition: all 0.3s 0s;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    border: 0px;
    background: white;
}

.qr_btn:hover {
    background: #eee;
}

.copyright {
    position: absolute;
    bottom: 30px;
    left: 0;
    text-align: center;
    width: 100%;
    color: #85919C;
}

.acc_btn {
    width: 100%;
    text-transform: uppercase;
}


/*Login end*/



/*dashboard start*/
.navbar {
    background-color: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
}

.navbar .dropdown-toggle {
    background-color: #ECEFF1;
    color: #000;
    padding: 10px 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.navbar .dropdown-toggle img {
    width: 34px;
    height: 34px;
    border-radius: 100px;
    object-fit: cover;
    margin-right: 10px;
}

.navbar .dropdown-toggle span {
    text-overflow: ellipsis;
    width: 90px;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
}

.navbar-nav {
    flex: 1;
    justify-content: flex-end;
}

.navbar .nav-link {
    font-weight: 600;
    padding: 10px 15px !important;
    font-size: 15px;
    border-radius: 6px;
}

.navbar .nav-link.active {
    border-color: #5d5fef;
    color: #5d5fef;
}

.dropdown-item {
    padding: 9px 18px;
    font-weight: 600;
    font-size: 15px;
}

.dropdown-menu {
    box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
    border: 0;
    border-color: #ECEFF1;
    width: 100%;
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: rgb(0 196 244 / 10%);
    color: #5d5fef;
}

.dashboard_news {
    background-color: #ECEFF1;
    padding: 20px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand span {
    font-weight: bold;
    font-size: 24px;
    color: #5d5fef;
}

.navbar-brand img {
    max-width: 100px;
    margin-right: 10px;
}

.title {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title h2 {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}

.title a {
    color: #85919C;
    text-transform: uppercase;
    font-weight: 600;
}

.title a:hover {
    color: #000;
}


.dash_left .nav-pills {
    margin-bottom: 15px;
    justify-content: center;
}

.dash_left .nav-pills .nav-link {
    background: transparent;
    padding: 10px;
    font-size: 13px;
    margin: 0;
    border-bottom: 1px solid #eceff1;
    border-radius: 0;
    text-transform: capitalize;
}

.dash_left .nav-pills .nav-link.active {
    color: #5d5fef;
    border-bottom: 2px solid #5d5fef;
    background: transparent;
}


.latest_news {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    display: flex;
}

.latest_news_img {
    flex: 0 0 150px;
    margin-right: 15px;
    height: 110px;
}

.latest_news_img img {
    border-radius: 4px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest_news_title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.latest_news_title a {
    color: #000;
}

.latest_news_date {
    color: #85919C;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.slick-dots button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border: 0;
    background-color: #ccc;
    border-radius: 100px;
    margin: 0 5px;
}

.slick-dots .slick-active button {
    background-color: #5d5fef;
}

.news_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.news_img {
    position: relative;
    overflow: hidden;
    height: 215px;
    border-radius: 4px;
}

.news_img_content {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.news_img_title {
    font-weight: 800;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.02em;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_img_small {
    font-size: 12px;
}

.news_video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background-color: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #CF2021;
    font-size: 24px;
}

.news_video:hover {
    background-color: #CF2021;
    color: #fff;
}


.card {
    background: #FFFFFF;
    border: 1px solid #ECEFF1;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    margin-bottom: 20px;
    transition: all 0.3s 0s;
}

.card .title {
    padding: 15px;
    margin-bottom: 0;
}

.card_title_right a {
    font-size: 20px;
    margin-left: 15px;
}

.coin_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    transition: all 0.3s 0s;
    cursor: pointer;
    font-weight: 500;
}

.coin_list:hover {
    background-color: #ECEFF1;
}

.coin_logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 10px;
    flex: 0 0 30px;
}

.coin_name {
    font-weight: bold;
    font-size: 16px;
}

.coin_sortname {
    font-weight: 500;
    font-size: 12px;
    color: #85919C;
}

.coin_price {
    font-weight: 600;
    font-size: 14px;
}

.text-red {
    color: #FF0000;
}

.text-green {
    color: green;
}

.text-right {
    text-align: right;
}

.coin_change {
    font-weight: 500;
    font-size: 12px;
}

.dashboard {
    padding-top: 30px;
    padding-bottom: 30px;
}




.total_balance_wrap {
    background-color: #fff;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.balance_hide_show i {
    font-size: 18px !important;
}

.balance_hide_show {
    margin-left: 10px;
    color: #85919C;
}

.total_balance i {
    font-size: 26px;
    margin-right: 15px;
}

.total_balance span {
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    color: #85919C;
}

.total_balance h4 {
    font-weight: 700;
    font-size: 24px;
    margin-top: 5px;
}

.all_wallet_balance li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
}

.all_wallet_balance li b {
    text-align: right;
    margin-left: 20px;
}

.all_wallet_balance span {
    color: #85919C;
}


.portfolio {
    background-color: #ECEFF1;
    padding: 20px 20px 0;
}

.portfolio_box {
    box-shadow: none;
    font-size: 12px;
    font-weight: 500;
}

.portfolio_box:hover {
    box-shadow: 0px 4px 4px rgb(0 0 0 / 5%);
}

.portfolio_body {
    background-color: #f7f7f7;
    padding: 10px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portfolio_body span {
    display: block;
    color: #85919C;
    font-size: 12px;
}

.portfolio_foot span {
    display: block;
    color: #85919C;
    font-size: 12px;
    margin-bottom: 2px;
}

.portfolio_foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}

.portfolio_box .coin_list:hover {
    background-color: transparent;
}

.portfolio_head .coin_col {
    flex: 1;
}


.watchlist .card_title_right input {
    height: inherit;
    position: absolute;
    left: 15px;
    top: 15px;
    width: calc(100% - 110px);
    display: none;
}

.watchlist .card_title_right.show input {
    display: block;
}

.flex-1 {
    flex: 1;
}

.fav {
    font-size: 18px;
    color: #ffc107;
    margin-right: 10px;
}

/*dashboard end*/


/*wallet start*/
.wallet_tab_section {
    background-color: #ECEFF1;
    padding: 30px 15px;
}

.buttons_call {
    display: flex;
    justify-content: flex-end;
    margin-left: 15px;
}

.buttons_call .button {
    padding: 8px 10px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    font-size: 13px;
}

.buttons_call .button i {
    margin-right: 5px;
    font-weight: 100;
}

.deposit_btn {
    background-color: rgb(0 128 0 / 10%);
    color: #008000;
}

.deposit_btn:hover {
    background-color: #008000;
    color: #fff;
}

.withdraw_btn {
    background-color: rgb(255 0 0 / 10%);
    color: #FF0000;
}

.withdraw_btn:hover {
    background-color: #FF0000;
    color: #fff;
}

.transfer_btn {
    background-color: #eceff1;
    color: #000;
}

.transfer_btn:hover {
    background-color: #5d5fef;
    color: #fff;
}

.coin_addr a {
    color: #85919C;
}

.copy_addr, .explorer_link {
    width: 24px;
    height: 25px;
    background-color: #ECEFF1;
    color: #000 !important;
    text-align: center;
    line-height: 24px;
    border-radius: 2px;
    margin-left: 5px;
}

.coin_addr {
    display: flex;
    align-items: center;
}

.copy_addr {
    margin-left: 15px;
}

.copy_addr:hover, .explorer_link:hover {
    background-color: #ccc;
}

.small_title {
    color: #85919C;
    font-size: 12px;
}

.opacity_down {
    color: #85919C;
    font-weight: normal;
}

.nav-pills .nav-link {
    background-color: #eceff1;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 10px 20px;
}

.nav-pills .nav-link.active {
    background-color: #5d5fef;
}

.wallet .coin_col.text-center, .wallet .coin_col.text-right {
    flex: 0 0 190px;
}

.wallet .coin_col.d-flex.align-items-center {
    flex: 1;
}


.coin_type {
    width: 36px;
    height: 36px;
    border: 1px solid #ECEFF1;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #85919C;
    flex: 0 0 36px;
    margin-right: 10px;
}

.coin_type .ri-arrow-down-line {
    transform: rotate(45deg);
}

.coin_type .ri-arrow-up-line {
    transform: rotate(45deg);
}

.status_col span:before {
    width: 8px;
    height: 8px;
    background-color: #008000;
    display: inline-block;
    content: "";
    border-radius: 10px;
    margin-right: 10px;
}

.status_col .Confirmed {
    color: #008000;
}

.status_col .Confirmed:before {
    background-color: #008000;
}

.status_col .Pending {
    color: #FFA500;
}

.status_col .Pending:before {
    background-color: #FFA500;
}

.status_col .Cancelled {
    color: #FF0000;
}

.status_col .Cancelled:before {
    background-color: #FF0000;
}

.more_info a {
    width: 30px;
    height: 30px;
    background-color: #ECEFF1;
    display: block;
    border-radius: 100px;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    color: #85919C;
}

.status_col {
    flex: 0 0 130px;
}

.wallet_history .highlight_col {
    flex: 0 0 250px;
}

.wallet_history .coin_col:nth-child(1), .wallet_history .coin_col:nth-child(2) {
    flex: 1;
}



.modal-header h1 {
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.modal-header h1 i {
    font-weight: normal;
    margin-right: 6px;
}

.modal-header {
    border-color: #ECEFF1;
}

.modal-content {
    border-radius: 0px;
}

.modal-dialog {
    max-width: 600px;
    width: 100%;
}

.modal-lg {
    max-width: 900px;
    width: 100%;
}

.modal-body {
    padding: 30px;
}

.popup_history_list {
    margin: -10px;
}

.popup_history_list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    font-size: 16px;
    transition: all 0.3s 0s;
}

.popup_history_list li:last-of-type {
    border: 0;
}

.popup_history_list li .status_col {
    flex: inherit;
}

.popup_history_list li:hover {
    background-color: #ECEFF1;
}



.deposit_popup p {}

.deposit_popup img {
    border: 1px solid #ECEFF1;
}

.popup_note {
    background-color: #ECEFF1;
    padding: 15px;
    font-size: 12px;
    height: 100%;
}

.popup_note p {
    margin-bottom: 10px;
    text-align: left;
    font-size: 14px;
    line-height: normal;
}




sup {
    color: red;
}

.input_overlay_bal {
    position: absolute;
    bottom: 0;
    right: 10px;
    color: #85919C;
    height: 50px;
    line-height: 50px;
    font-weight: 500;
}

.transfer_popup .input_icon {
    position: absolute;
    bottom: 5px;
    left: 5px;
    color: #85919C;
    height: 42px;
    line-height: 42px;
    width: 40px;
    text-align: center;
    font-size: 20px;
}

.transfer_popup select {
    text-indent: 25px;
}

.transfer_popup_amount .d-flex {
    justify-content: space-between;
    margin-bottom: 10px;
    color: #85919C;
    font-weight: 500;
}

.all {
    color: #5d5fef;
    font-weight: 600;
    float: right;
}

.transfer_popup_amount {
    align-items: flex-end;
}

.transfer_popup .button {
    width: 100%;
    margin-top: 20px;
}

.popup_note ul {
    list-style: disc;
    padding-left: 15px;
    font-size: 14px;
}

.popup_note li {
    color: #5f7d95;
    font-weight: 600;
    margin-top: 5px;
}

ul.info_popup li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
    font-weight: 500;
}

ul.info_popup li span {
    color: #85919C;
}

.modal-body textarea.form-control {
    height: 100px;
}


.select-chain {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.select-chain span {
    background-color: #eceff1;
    padding: 10px 20px;
    display: block;
    border-radius: 2px;
    font-weight: bold;
    color: #000;
    margin-right: 10px;
    border: 1px solid transparent;
    position: relative;
    cursor: pointer;
}

.select-chain span.active {
    border-color: #5d5fef;
    background-color: #fff;
    color: #5d5fef;
}

.select-chain span i {
    display: none;
}

.select-chain span.active i {
    color: #5d5fef;
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #fff;
    display: block;
    font-size: 18px;
}

.popup_margin_minus {
    margin: -30px -30px -30px 30px;
    padding-left: 0px;
}



.pagination {
    padding: 20px;
    justify-content: center;
}

.pagination .page-link {
    color: #000;
    font-weight: 600;
    margin: 0 5px;
    border-radius: 2px !important;
    background-color: #eceff1;
    border: 0;
    font-size: 14px;
}

.pagination .page-link:hover {
    background-color: #ccc;
}

.pagination .disabled .page-link {
    opacity: .5;
}

.pagination .page-item.active .page-link {
    color: #fff;
    background-color: #5d5fef;
    border-color: #5d5fef;
}

.search_box {
    flex: 1;
}

.search_box .form-control {
    max-width: 300px;
    width: 100%;
    margin: 0 0 0 auto;
}



.table {
    font-weight: 600;
}

.table td, .table th {
    padding: 15px 0;
    border-color: #eceff1;
}

.overview_table {
    border-top: 1px solid #eceff1;
    padding-top: 20px;
    margin-top: 20px;
}

.overview .total_balance_wrap {
    padding: 20px;
    margin-bottom: 0px;
}

.today_pl span {
    display: block;
    color: #85919C;
    margin-bottom: 5px;
}

.today_pl {
    text-align: right;
}



.tbl_wallet .table td, .tbl_wallet .table th {
    padding-left: 15px;
    padding-right: 15px;
    vertical-align: middle;
}

.tbl_wallet .table th {
    color: #85919C;
    font-weight: 500;
}


.common_dropdown {
    padding: 10px 50px 10px 15px;
    background-color: #eceff1;
    color: #000;
    font-size: 14px;
}

.common_dropdown.dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0px, -50%);
}

.history_btn {
    border: 1px solid #eceff1;
    padding: 10px 20px;
    border-radius: 4px;
    background-color: #fff;
}

.title h1 {
    font-size: 34px;
}

.ml-15 {
    margin-left: 15px;
}

.mode_icon {
    margin-left: 20px;
    font-size: 18px;
}


.duration {
    display: flex;
}

.duration span {
    color: #000;
    padding: 5px 10px;
    border: 1px solid #eceff1;
    border-radius: 4px;
    margin-right: 5px;
    min-width: 45px;
    display: block;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s 0s;
}

.duration span:hover, .duration span.active {
    border-color: #5d5fef;
    color: #5d5fef;
}

/*wallet end*/





.flexible_saving_popup .form-group label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flexible_saving_popup .form-group label b {
    color: #000;
}

.auto_subs {
    background-color: #ECEFF1;
    padding: 12px 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
}

.form-switch {
    font-size: 20px;
}

.flexible_saving_popup .info_popup {
    margin-top: 30px;
}

.form-check-input:checked {
    background-color: #5d5fef;
    color: #5d5fef;
}

.form-check {
    color: #85919C;
}

.form-check a {
    color: #5d5fef;
    font-weight: bold;
    text-decoration: underline;
}



.page_heading h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-content h2 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: bold;
}

.page-content ul {
    list-style: circle;
    margin-left: 20px;
    font-size: 18px;
    line-height: 30px;
    color: #676767;
    font-weight: 500;
}

.page-content ul li {
    margin-bottom: 10px;
}



.faqs h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 24px;
}

.faqs .accordion-header .accordion-button {
    font-size: 18px;
    font-weight: 600;
}

.faqs .accordion-item .accordion-body {
    font-size: 18px;
}



.whitepaper-menu-list {
    background-color: #eceff1;
    padding: 1rem;
    border-radius: 6px;
    position: sticky;
    top: 0;
}

.whitepaper-menu-list a {
    font-size: 18px;
    display: block;
    font-weight: 600;
    padding: 1rem;
    border-radius: 4px;
}

.whitepaper-menu-list a:hover {
    background-color: #fff;
}

.whitepaper h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.whitepaper p {
    margin-bottom: 15px;
}

.whitepaper section {
    margin-bottom: 30px;
}

.whitepaper h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.whitepaper ul {
    margin-bottom: 30px;
}

.whitepaper li {
    font-size: 18px;
    line-height: 30px;
    color: #676767;
    font-weight: 500;
    margin-bottom: 10px;
}




.user-manual img {
    max-width: 240px;
    margin-bottom: 10px;
    border: 1px solid;
}

.user-manual ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

.user-manual ul {
    list-style: disc;
    margin-left: 20px;
}

.user-manual ul li b {
    margin-right: 5px;
}

.user-manual h2 {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 30px;
}

.user-manual h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: bold;
}




.support-container {
    max-width: 600px;
}

.support-container .btn-brand {
    background-color: #5c67f2;
    color: white;
}

.support-container .btn-brand:hover {
    background-color: #4a54e1;
}

.support-container .form-label {
    color: #333;
}

.support-container .form-control {
    border-radius: 10px;
}

.support-container .footer-text {
    font-size: 14px;
    color: #6c757d;
    margin-top: 25px;
    text-align: center;
}

.support-container textarea.form-control {
    height: 150px;
}

.delete_account {
    padding: 20px 10px 0;
}

.delete_account h1 {
    margin-top: 30px;
}

.text-gray {
    color: #999;
}


button:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
}

.success-message, .error-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
}

.success-message {
    background-color: #dcfce7;
    color: #15803d;
}

.error-message {
    background-color: #fee2e2;
    color: #b91c1c;
}


.logo img {
    max-width: 190px;
    width: 100%;
}

.hero-section {
    background-color: rgb(17 24 39 / 90%);
}

.bg-primary {
    background-color: #5d5fef;
}

@media (max-width: 767px) {
    .page_heading h1 {
        font-size: 22px;
    }

    .page-content h2 {
        font-size: 18px;
        margin-top: 20px;
    }

    p {
        font-size: 16px;
        line-height: 26px;
    }

    .whitepaper-menu-list {
        margin-bottom: 20px;
    }

    .whitepaper-menu-list a {
        font-size: 16px;
        padding: 10px;
    }

    .faqs h3 {
        font-size: 20px;
    }

    .faqs .accordion-header .accordion-button {
        font-size: 16px;
    }

    .faqs .accordion-item .accordion-body {
        font-size: 14px;
    }
}




.header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px 0;
}

.logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1877F2, #6aa8ff);
    color: white;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 8px 24px rgba(31, 111, 235, 0.12);
}

.title-wrap h1 {
    margin: 0;
    font-size: 1.6rem;
}

.title-wrap p {
    margin: 4px 0 0;
    color: #727272;
    font-size: 16px;
    font-weight: 400;
}

.privacy-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 28px;
    box-shadow: 0 6px 30px rgba(20, 30, 50, 0.06);
    margin-bottom: 20px;
}

.meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.meta .updated {
    color: #727272;
    font-size: 16px;
}

.actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    background: #1877f2;
    color: white;
    border: none;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(31, 111, 235, 0.12);
}

.btn.secondary {
    background: transparent;
    color: #1877f2;
    border: 1px solid rgba(31, 111, 235, 0.08);
    box-shadow: none;
}


section.h {
    margin-top: 12px;
    margin-bottom: 6px;
    font-weight: 700;
    color: #111827;
    font-size: 16px;
}

p, li {
    color: #111827;
    margin: 5px 0;
}

ul {padding-left: 20px;}

.privacy-card h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

section {
    margin-bottom: 40px;
}

.muted {
    color: var(--muted);
    font-size: 14px;
}

.privacy-card h5 {
    margin-bottom: 15px;
}