:root {
    --base-font: "Poppins", sans-serif;
    --base-color-red: #d30000;
    --base-bg-color: #17181c;
}

*,
::before,
::after {
    font-weight: 400;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

html,
body {
    font-family: var(--base-font);
    height: 100%;
    color: rgba(0, 0, 0, 0.6);
}

html.overflow-section {
    overflow: hidden;
}

a {
    transition: all ease-in-out 300ms;
    -webkit-transition: all ease-in-out 300ms;
    -ms-transition: all ease-in-out 300ms;
    -o-transition: all ease-in-out 300ms;
    -moz-transition: all ease-in-out 300ms;
}

p, li {
    font-family: inherit;
    font-size: 16px;
    line-height: 24px;
    color: inherit;
}

a {
    color: #d30000;
}

a:hover {
    color: #a2a3a4;
}

.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
    background-color: transparent;
    color: grey;
}

.nav ul > li {
    margin-bottom: 0;
}

hr {
    border-top: 1px solid #3f3f3f;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}
.mt-2 {
    margin-top: 2rem !important;
}
.mt-3 {
    margin-top: 3rem !important;
}
.mb-2 {
    margin-bottom: 2rem !important;
}
.mb-3 {
    margin-bottom: 3rem !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(255, 255, 200, 0.5), 0 0 0 0 rgb(255, 255, 200, 0.5);
    }

    20% {
        box-shadow: 0 0 10px 0 rgb(255, 109, 74, 0),
        0 0 10px 10px rgb(255, 109, 109, 0);
    }
}

@keyframes pulse_red {
    0% {
        box-shadow: 0 0 0 0 rgb(255, 0, 0, 1), 0 0 0 0 rgb(255, 0, 0, 1);
    }

    25% {
        box-shadow: 0 0 10px 0 rgb(255, 109, 74, 0),
        0 0 15px 15px rgb(255, 109, 109, 0);
    }
}

/*------- Color Settings -------*/
.text-ffffff {
    color: #ffffff !important;
}

.text-a2a3a4 {
    color: #a2a3a4 !important;
}

.text-36B509 {
    color: #36b509 !important;
}

.text-D30000 {
    color: #d30000 !important;
}

.bg-17181c {
    background: #17181c !important;
}

/*------- Color Settings End-------*/

/*------- Font Settings -------*/
.font-size-18 {
    font-size: 18px !important;
}

.font-24 {
    font-size: 24px !important;
}

.font-black {
    color: black !important;
}

.font-300 {
    font-weight: 300;
}
/*------- Font Settings End-------*/

/*------- Button Settings -------*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 22px 8px;
    border: 2px solid transparent;
    box-shadow: none;
    border-radius: 50px;
}

.btn-red {
    color: #ffffff;
    border-color: var(--base-color-red);
    background-color: var(--base-color-red);
    transition: 0.5s;
}

.btn-red:hover,
.btn-red:active:focus {
    color: #ffffff;
    border-color: #d30000;
    background-color: #2f3034 !important;
    transition: 0.5s;
}
.btn-red.active {
    color: #d30000;
    background-color: #ffffff;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-red.active:hover {
    color: #ffffff;
    background-color: #d30000;
}

.btn-white {
    color: #000000;
    border-color: #6e6e6e;
    background-color: #f1eeee;
}
.btn-white:hover {
    background-color: #ffffff;
}

.btn-black {
    color: #ffffff;
    border-color: black;
    background-color: black;
}
.btn-black:hover,
.btn-black:focus,
.btn-black:active {
    color: #ffffff;
    border-color: #d30000;
    background-color: #d30000;
}
.btn-black[disabled]:hover,
.btn-black[disabled]:focus,
.btn-black[disabled]:active {
    color: #ffffff;
    border-color: black;
    background-color: black;
}

.btn-pulse {
    -webkit-animation: pulse 4s linear infinite;
    -moz-animation: pulse 4s linear infinite;
    -ms-animation: pulse 4s linear infinite;
    animation: pulse 4s linear infinite;
}

.view-all-button {
    float: left;
    width: 100%;
    position: relative;
    margin-top: 20px;
}

.white-box .toggle-group .toggle-on {
    padding-right: 85px;
}
.white-box .toggle-group .toggle-off {
    padding-left: 85px;
}
.white-box .toggle-group .toggle-handle {
    padding: 0 65px;
}

/*------- Button Settings End-------*/

/*------- Layout Settings -------*/

.d-flex {
    display: flex !important;
}
.flex-row {
    flex-direction: row !important;
}
.flex-column {
    flex-direction: column !important;
}
.flex-50 {
    flex-basis: 50%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 1rem;
}
.gap-5 {
    gap: 5rem;
}

.main-min-vh {
    min-height: calc(100vh - 61px);
}

table td {
    word-break: break-word;
}
/*------- Layout Settings End -------*/

.extra-small-block-title {
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
}

.extra-small-block-title * {
    text-decoration: none;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
}

table thead tr th {
    font-family: inherit;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
}

table tbody tr td {
    font-family: inherit;
    font-size: 16px;
    line-height: 24px;
    color: inherit;
}

.text-red {
    color: var(--base-color-red);
}

.banner-image {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.banner-image::before {
    display: block;
    width: 100%;
    height: 100%;
    content: " ";
    background-color: rgba(23, 24, 28, 0.6);
}

.control-label {
    color: #000000;
}

.required {
    color: #fd5050;
}

/* social-icons */
.social-icons ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.social-icons ul li {
    font-size: 18px;
    line-height: 18px;
    display: inline-flex;
    margin: 0 15px;
    padding: 0;
    list-style-type: none;
    color: #ffffff;
}

.social-icons ul li:first-child {
    margin-left: 0;
}

.social-icons ul li:last-child {
    margin-right: 0;
}

.social-icons ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    color: inherit;
    border-radius: 50%;
}

.social-icons ul li a svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.social-icons ul li a:hover {
    background-color: #d30000;
}

/* social-icons */

/*======== Header ========*/
header {
    width: 100%;
    transition: 0.6s;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.main-page header {
    position: absolute;
}

.login .header {
    position: relative;
    transition: none !important;
}

/*---- Navbar Settings Start ----*/
.navbar {
    padding: 0;
    margin: 0;
}

.navbar-header {
    display: flex;
    align-items: center;
    min-width: 175px;
}

/* brand start */
.navbar-header .navbar-brand {
    height: fit-content;
    padding: 0;
}

.navbar-header .navbar-brand img {
    width: 145px;
    margin-bottom: -5px;
}

/* brand end */

/* signup button start */
.navbar-header .btn {
    display: none;
    padding: 10px 22px 8px;
    margin-left: auto;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
}

/* signup button end */

/* toggle start*/
.navbar-toggle {
    background-color: transparent !important;
    padding: 0;
    width: 30px;
    height: 30px;
    margin-left: auto;
}

.navbar-toggler-icon {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.navbar-toggle .toggle-bar {
    margin: 2px 0 0;
    height: 3px;
    width: 100%;
    position: relative;
    background-color: #ffffff;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -ms-border-radius: 2px;
    transition: ease-in-out 0.2s;
    -webkit-transition: ease-in-out 0.2s;
    -ms-transition: ease-in-out 0.2s;
}

.navbar-toggle .toggle-bar:nth-child(2n) {
    width: 20px;
}

.navbar-toggle .navbar-toggler-icon.open .toggle-bar:first-child {
    top: 12px;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.navbar-toggle .navbar-toggler-icon.open .toggle-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle .navbar-toggler-icon.open .toggle-bar:last-child {
    top: -11px;
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

/* toggle end*/

/* navbar-collapse start */
.navbar .navbar-collapse {
    width: 100%;
}

.navbar-nav {
    width: 100%;
    margin: 0;
}

.navbar-nav > li {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-nav > li > a {
    font-size: 15px;
    line-height: 20px;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.navbar-nav > li.active > a,
.navbar-nav > li.current-menu-item > a,
.navbar-nav > li.current-menu-parent > a,
.navbar-nav > li > a.active,
.navbar-nav > li > a.current-menu-item,
.navbar-nav > li > a.current-menu-parent,
.navbar-nav > li > a:focus,
.navbar-nav > li > a:hover {
    color: #ffffff;
    background-color: #2f3034;
}

.dropdown .dropdown-toggle:hover {
    background: transparent !important;
    color: grey !important;
}

.navbar-nav .open .dropdown-menu > li > a {
    color: #fff;
    padding: 10px 25px;
}

.navbar-nav .open .dropdown-menu > li > a:focus,
.navbar-nav .open .dropdown-menu > li > a:hover {
    background: #d30000;
}

/* navbar-collapse end */

/*---- Navbar Settings End ----*/
/*======== Header End ========*/

/*======== HomePage Start ========*/
.extra-small-block-title {
    font-size: 20px;
    line-height: 25px;
}

/* banner */

.banner-section {
    position: relative;
    height: 400px;
}

.banner-section .banner-image {
    position: relative;
    height: 100%;
}

.banner-section .banner-image::before {
    display: none;
}

.banner-section .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover";
    opacity: 0.5;
}

.section-title {
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
    margin-bottom: 25px;
    color: black;
}

.section-title * {
    text-decoration: none;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
}

.banner-section .section-title {
    font-size: 22px;
    line-height: 35px;
    max-width: 290px;
    margin: 0 auto 25px;
    color: #ffffff;
}

.banner-section .section-title .type-wrap {
    position: relative;
    display: inline-block;
    min-height: 80px;
}

.banner-section .section-title .type-wrap:before {
    position: absolute;
    content: "";
    left: 50%;
    top: 100%;
    width: 250px;
    height: 28px;
    background: url(../images/banner-title-line.png) no-repeat;
    background-size: contain;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
}

.banner-section .banner-content {
    color: white;
}

.banner-section .banner-content .sub-title {
    display: none;
}

.section-title br {
    display: none;
}

.banner-section .banner-description {
    position: absolute;
    left: 0;
    right: 0;
    top: 60%;
    text-align: center;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
}

.banner-section .buy-now-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.banner-section .buy-now-button .btn {
    padding: 8px 30px;
    width: 160px;
}

.banner-section .buy-now-button .btn-red {
    -webkit-animation: pulse 4s linear infinite;
    -moz-animation: pulse 4s linear infinite;
    -ms-animation: pulse 4s linear infinite;
    animation: pulse 4s linear infinite;
}

/* banner end */

/* payment-currency */
.payment-currency-section {
    position: relative;
    padding: 50px 0 25px;
    margin: 0;
    z-index: 9;
}

.payment-currency-table {
    display: none;
}

.payment-currency-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-currency-mobile .currency-container {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #ffffff;
    box-shadow: 0px 4px 54px 30px rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.payment-currency-mobile .currency-container .currency-item {
    display: flex;
    align-items: center;
    height: 32px;
}

.currency-item .item-title {
    flex: 1 1 40%;
    /* font-family: "PoppinsRegular"; */
    font-size: 14px;
    font-weight: bold;
    line-height: 21px;
    color: black;
}

.currency-item .item-value {
    flex: 1 0 60%;
    font-size: 15px;
    line-height: 22px;
    /* font-family: "PoppinsRegular"; */
    color: #000000;
}

.payment-currency-mobile .currency-container .button-wrapper {
    position: relative;
    margin-top: 1rem;
}

.currency-container .button-wrapper .btn {
    padding: 0.5rem 2rem;
    border-radius: 2rem;
    width: 100%;
}

.currency-container .button-wrapper img {
    position: absolute;
    left: 0.5rem;
    bottom: 0.5rem;
    width: 28px;
    height: 28px;
}

/* payment-currency end */

/* make-payment-easy */
.make-payment-easy-section {
    padding: 25px 0 35px;
}

.make-payment-easy-section .section-title {
    margin-bottom: 25px;
}

.make-payment-easy-section .main-detail-block {
    max-width: 655px;
    margin: 0 auto;
    padding-bottom: 35px;
}

.make-payment-easy-section .make-payment-list .row {
    margin: 0;
}

.make-payment-easy-section .make-payment-list .row > * {
    padding: 0;
}

.make-payment-easy-section
.make-payment-list
.row
> *:first-child
.make-payment-block {
    border-radius: 30px 0 0 30px;
    -webkit-border-radius: 30px 0 0 30px;
    -moz-border-radius: 30px 0 0 30px;
    -ms-border-radius: 30px 0 0 30px;
    -o-border-radius: 30px 0 0 30px;
}

.make-payment-easy-section
.make-payment-list
.row
> *:last-child
.make-payment-block {
    border: none;
    border-radius: 0 30px 30px 0;
    -webkit-border-radius: 0 30px 30px 0;
    -moz-border-radius: 0 30px 30px 0;
    -ms-border-radius: 0 30px 30px 0;
    -o-border-radius: 0 30px 30px 0;
}

.make-payment-easy-section
.make-payment-list
.row
> *:last-child
.make-payment-block
.extra-small-block-title {
    border: none;
}

.make-payment-easy-section
.make-payment-list
.row
> *:last-child
.make-payment-block
.make-payment-detail
.detail {
    border: none;
}

.make-payment-block {
    text-align: center;
    box-shadow: 0px 4px 54px 30px rgba(0, 0, 0, 0.05);
    height: calc(100% - 73px);
    height: 100%;
    position: relative;
}

.make-payment-block:hover,
.make-payment-block.active {
    box-shadow: none;
}

.make-payment-block .extra-small-block-title {
    font-weight: 700;
    margin: 0;
    padding: 20px 15px;
    color: #ffffff;
    background-color: #d30000;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.make-payment-block .make-payment-detail {
    text-align: center;
}

.make-payment-block .make-payment-detail .extra-small-block-title {
    font-weight: 500;
    color: #000000;
    padding: 30px 15px;
    background-color: transparent;
    margin: 0;
}

.make-payment-block .make-payment-detail .extra-small-block-title span {
    display: block;
    font-size: 14px;
    line-height: 21px;
}

.make-payment-block:hover .make-payment-detail .detail,
.make-payment-block.active .make-payment-detail .detail {
    background-color: #d30000;
}

.make-payment-block .make-payment-detail .detail {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.make-payment-block .make-payment-detail .detail p {
    font-size: 14px;
    line-height: 21px;
    color: black;
    padding: 12px;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.make-payment-block .make-payment-detail .detail p a {
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}

.make-payment-block:hover .make-payment-detail .extra-small-block-title {
    font-weight: 700;
    color: #ffffff;
    background-color: #d30000;
}

.make-payment-block:hover .make-payment-detail .detail p {
    color: #ffffff;
}

.make-payment-block:hover .make-payment-detail .detail p a {
    color: #ffffff;
}

.make-payment-block .buy-now-button {
    position: relative;
}

.make-payment-block .buy-now-button .btn {
    display: flex;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 0;

    -webkit-animation: pulse_red 3s linear infinite;
    -moz-animation: pulse_red 3s linear infinite;
    -ms-animation: pulse_red 3s linear infinite;
    animation: pulse_red 3s linear infinite;
}

.make-payment-easy-section .buy-now-button .btn:active:focus,
.make-payment-easy-section .buy-now-button .btn:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
}

/* make-payment-easy end */

/* our-customer-say */
.our-customer-say-section {
    padding: 35px 0;
    background: url(../images/canada-currency-platform-mobile-bg.png) no-repeat
    #17181c;
    background-size: 100%;
}

.our-customer-say-section .section-title {
    margin-bottom: 30px;
}

.our-customer-say-section .main-detail-block {
    max-width: 805px;
    width: 100%;
    padding-bottom: 25px;
}

.our-customer-say-section .our-customer-say-list {
    max-width: 432px;
    width: 100%;
    margin: 0 auto;
}

.our-customer-say-section .our-customer-say-list .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.our-customer-say-section .our-customer-say-list .row > * {
    padding-left: 12px;
}

.our-customer-say-section .our-customer-say-block {
    text-decoration: none;
    display: block;
    height: calc(100% - 24px);
    border: 2px solid rgba(0, 0, 0, 0.2);
    padding: 25px 15px;
    margin-bottom: 24px;
    background-color: #17181c;
    border-color: rgba(255, 255, 255, 0.25);
}

.our-customer-say-section .our-customer-say-block .customer-profile {
    width: 45px;
    height: 45px;
    border: 3px solid #d30000;
    margin-bottom: 18px;
    border-radius: 50%;
}

.our-customer-say-section .our-customer-say-block .customer-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover";
}

.our-customer-say-section .our-customer-say-block .platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 3px solid #d30000;
    margin-bottom: 18px;
    border-radius: 50%;
}

.our-customer-say-section .our-customer-say-block .platform-icon img {
    max-height: 100%;
}

.our-customer-say-section .our-customer-say-block .extra-small-block-title {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #ffffff;
}

.our-customer-say-section
.our-customer-say-block
.extra-small-block-title
.rating {
    line-height: 0;
    margin: 7px 0 0;
}

.our-customer-say-section
.our-customer-say-block
.extra-small-block-title
.rating
* {
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
    color: #ffbe16;
}

.our-customer-say-section .our-customer-say-block .detail p {
    font-size: 14px;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.our-customer-say-section a.our-customer-say-block:hover {
    border-color: #ffffff;
    background-color: #ffffff;
}

.our-customer-say-section
a.our-customer-say-block:hover
.extra-small-block-title {
    color: #000000;
}

.our-customer-say-section a.our-customer-say-block:hover .detail p {
    color: #000000;
}

/* our-customer-say */

/* our-bank start */

.bank-block {
    text-align: center;
    padding: 0 0 20px;
}

.bank-block a {
    text-decoration: none;
}

.bank-block h6 {
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    color: #17181c;
    margin: 16px 0 24px;
}

/* our-bank end */

/* our-feature start */
.our-feature {
    padding: 30px 0;
}

.feature-block {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 0.2);
    min-height: 268px;
    padding: 40px;
    margin-bottom: 20px;
}

/* our-feature end */

/* real-human-support */
.real-human-support-section {
    padding: 35px 0;
    background: url(../images/canada-currency-platform-bg.png) no-repeat #17181c;
    background-size: 100%;
}

.real-human-support-section .section-title {
    margin-bottom: 50px;
}

.real-human-support-section .send-mail-support {
    padding-top: 40px;
}

.real-human-support-section .send-mail-support .btn:active:focus,
.real-human-support-section .send-mail-support .btn:hover {
    color: #ffffff;
    border-color: #ffffff;
    background-color: #ffffff;
}

/* real-human-support */

/* faq start */
.faq-section {
    padding: 30px 0;
}

/* faq end */

/* trusted-platform start */
.trusted-platform-section {
    padding: 30px 0;
    background: url(../images/canada-currency-platform-bg.png) no-repeat #17181c;
    background-size: 100%;
}

.trusted-platform-section .section-title {
    margin-bottom: 35px;
    color: white;
}

.trusted-platform-section .main-detail-block {
    padding-bottom: 15px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 715px;
    width: 100%;
}

.trusted-platform-section .social-icons ul {
    justify-content: center;
}

/* trusted-platform end */

/* our-featured-blog start */
.our-featured-blog-section {
    padding: 35px 0;
}

.our-featured-blog-section .section-title {
    margin-bottom: 25px;
}

.our-featured-blog-section .main-detail-block {
    padding-bottom: 35px;
}

.our-featured-blog-section .search-blog-block {
    padding-bottom: 40px;
}

.our-featured-blog-section .featured-blog-list {
    max-width: 432px;
    width: 100%;
    margin: 0 auto;
}

.our-featured-blog-section .featured-blog-list .row {
    display: block !important;
    margin: 0 -12px;
}

.our-featured-blog-section .featured-blog-list .row > * {
    padding: 0 12px;
}

.our-featured-blog-section .featured-blog-block {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 25px 15px;
    background: #ffffff;
    box-shadow: 0 4px 54px 30px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

.our-featured-blog-section .featured-blog-block .image {
    width: 100%;
    height: 175px;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 10px;
}

.our-featured-blog-section .featured-blog-block .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-featured-blog-section .featured-blog-block .blog-detail {
    padding: 15px 0 5px;
}

.our-featured-blog-section .featured-blog-block .title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 10px;
}

.our-featured-blog-section .featured-blog-block .title * {
    text-decoration: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
}

.our-featured-blog-section .featured-blog-block .detail p {
    color: rgba(0, 0, 0, 0.6);
}

.our-featured-blog-section .view-all-button {
    margin-top: 25px;
}

.search-blog-block .search-box {
    position: relative;
    max-width: 546px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.search-blog-block .search-box .search-icon {
    position: absolute;
    top: 18px;
    left: 26px;
}

.search-blog-block .search-box .form-control {
    height: 50px;
    resize: none;
    border: 2px solid #f2f2f2;
    background-color: #f2f2f2;
    padding: 6px 35px 6px 50px;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    box-shadow: none;
    border-radius: 50px;
}

.search-blog-block .search-box .form-control::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.search-blog-block .search-box .form-control::-moz-placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.search-blog-block .search-box .form-control:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.search-blog-block .search-box .form-control:-o-placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.search-blog-block .search-box .btn {
    position: relative;
    width: 144px;
    margin-top: 20px;
}

/* our-featured-blog end */

.bank-logo {
    min-height: 125px;
    min-width: 125px;
}

.cibc {
    background: url("../images/CIBC.png") no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.cibc:hover {
    background: url("../images/CIBC-red.png") no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.scotiabank {
    background: url("../images/scotia-bank.png") no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.scotiabank:hover {
    background: url("../images/scotia-bank-red.png") no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.bmo {
    background: url("../images/BMO-Symbol.png") no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.bmo:hover {
    background: url("../images/BMO-Symbol-red.png") no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.rbc {
    background: url("../images/RBC-Symbol.png") no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.rbc:hover {
    background: url("../images/RBC-Symbol-Red.png") no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.td-bank {
    background: url("../images/TD.png") no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.td-bank:hover {
    background: url("../images/TD-Red.png") no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.desjardins {
    background: url("../images/Desjardins.png") no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.desjardins:hover {
    background: url("../images/Desjardins-Red.png") no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

/*======== HomePage End ========*/

/*======== Main Page Start ========*/
.main-wrapper {
    width: 100%;
    padding-bottom: 30px;
    font-weight: normal;
    min-height: calc(100vh - 61px);
}

.main-wrapper .title {
    padding: 0 15px;
}

.main-wrapper .title > h1 {
    color: white;
    text-align: center;
    margin: 50px auto;
}

.main-wrapper .title.title-sm > h1 > .emphasize {
    /* color: #f5de9a; */
    color: #ff5b5b;
    font-weight: 600;
}

.main-wrapper .search {
    width: 90%;
    max-width: 450px;
    margin: 0 auto 50px auto;
    position: relative;
    text-align: center;
    color: black;
}

.main-wrapper .search::before {
    position: absolute;
    top: 8px;
    left: 20px;
    font-family: "FontAwesome";
    content: "\f002";
    font-size: 24px;
}

.main-wrapper .search input {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    padding: 5px 20px 5px 60px;
    font-size: 18px;
    outline: none;
    border: none;
}

.main-wrapper .search .btn {
    width: 80px;
    height: 50px;
    border-radius: 25px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    outline: none;
}

.main-wrapper .search .btn:hover {
    background-color: #d30000;
    color: white;
    transition: all 0.3s;
}

.main-wrapper .search-result p {
    font-size: 20px;
    color: #a8a8a8;
    line-height: 32px;
    margin-bottom: 20px;
}

.main-wrapper .search-result strong {
    color: white;
}

.login .main-wrapper {
    display: flex;
    align-items: center;
    padding: 50px 0;
    color: #e7e7e7;
}

.popover {
    color: black;
}

.login-box {
    border-radius: 15px;
    /* background-color: rgba(60, 60, 60, 0.5); */
    background: rgba(70, 70, 70, 0.3);
    padding: 30px 20px;
}

.login-box .btn {
    font-size: 16px;
    line-height: 1.25;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid transparent;
}

.login-box img {
    width: 220px;
    margin: 10px auto;
}

.login-box .show-tooltip {
    border-bottom: 1px #9899fc dashed;
}

.login-box .popover {
    color: black;
    top: -57px !important;
    left: 72px !important;
    width: 300px;
}

.login-box .popover h3 {
    font-weight: bold;
}

.login-box p {
    padding-top: 10px;
    color: lightgray;
    font-weight: 300;
}

.login-box form .row {
    margin-top: 15px;
}

.login-box form .control-label {
    color: lightgray;
    font-weight: 500;
}

.login-box form .control-label > span {
    font-weight: 500;
}

.login-side-box h1 {
    font-size: 3.5rem;
    line-height: 5rem;
    margin-top: 50px;
}

.login-side-box h1 > span {
    font-size: 3rem;
}

.login-side-box .img-coin {
    margin: 50px auto;
    width: 100px;
    height: 100px;
    background-size: cover;
}

.login-side-box p {
    text-transform: uppercase;
    font-size: 2.5rem;
}

.referral-box h1,
.referral-box h2,
.page-content h1 {
    color: white;
}

.referral-box p {
    color: lightgrey;
}

.referral-box ul {
    margin-left: 30px;
}

.referral-box .box {
    /* background: white; */
    background: rgba(70, 70, 70, 0.3);
    border: 1px solid #3d3d3d;
    border-radius: 10px;
    padding: 10px 20px;
    margin: 20px 0;
    /* color:black; */
    color: white;
    /* background-image: url('../images/mybtc-background.jpg'); */
    background-size: cover;
}

.main-wrapper .pagination-custom .btn {
    color: white;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
}

.main-wrapper .pagination-custom .btn:hover {
    background-color: #363636;
}

.main-wrapper .pagination-custom .btn-primary {
    background-color: #d30000;
    border: none;
}

.main-wrapper .pagination-custom .btn-outline {
    border: 1px solid #d30000;
}

.featured-blog-list > .row {
    display: flex;
    flex-wrap: wrap;
}

.featured-blog-block {
    height: calc(100% - 30px);
    padding: 0;
    margin-bottom: 30px;
    background: #262626;
    overflow: hidden;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.featured-blog-block .image {
    position: relative;
    width: 100%;
    height: 224px;
    margin-bottom: 16px;
    overflow: hidden;
}

.featured-blog-block .image .overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 100%;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all 0.2s ease-in-out 0s;
    pointer-events: none;

    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-blog-block .image:hover .overlay {
    top: 0;
    opacity: 1;
}

.featured-blog-block .image .overlay > .btn-more {
    font-size: 24px;
    color: white;
    padding: 5px 20px;
    border-radius: 30px;
    border: 2px solid white;
}

.featured-blog-block .image .overlay > .btn-play {
    font-size: 50px;
    color: white;
    padding: 13px 32px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid white;
}

.featured-blog-block .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover";
}

.featured-blog-block .blog-detail {
    padding: 20px;
}

.featured-blog-block .blog-title {
    font-size: 18px;
    line-height: 24px;
    color: white;
    margin-bottom: 10px;
}

.featured-blog-block .blog-title * {
    text-decoration: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
}

.featured-blog-block .detail p {
    color: #c2c2c2;
    font-size: 16px;
    font-weight: 300;
}

/*======== Main Page End ========*/

/*======== Footer Start ========*/
.footer {
    padding: 35px 0 0 0;
    background: #17181c;
    position: relative;
    overflow: hidden;
}

.footer:before {
    width: 750px;
    height: 300px;
    margin-right: -150px;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;

    position: absolute;
    content: "";
    top: 15px;
    right: 100%;
    background: url("../images/footer-left-shape.png") no-repeat;
    background-size: 100% 100%;
}

.footer:after {
    width: 750px;
    height: 300px;
    margin-left: -150px;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;

    position: absolute;
    content: "";
    left: 100%;
    top: 15px;
    background: url("../images/footer-right-shape.png") no-repeat;
    background-size: 100% 100%;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    opacity: 0.5;
}

.footer .f-content {
    position: relative;
    z-index: 9;
}

.f-middle {
    padding: 25px 0;
}

.f-middle .row {
    display: flex;
    flex-wrap: wrap;
}

.f-block {
    margin-bottom: 25px;
}

.f-block .f-title {
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 25px;
}

.f-block .f-title * {
    text-decoration: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
}

.f-block .f-detail p {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.f-block .f-detail ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.f-block .f-detail ul li {
    display: block;
    margin: 0 0 10px;
    padding: 0;
    list-style-type: none;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.f-block .f-detail ul li:last-child {
    margin: 0;
}

.f-block .f-detail ul li a {
    text-decoration: none;
    color: inherit;
}

.f-block .f-detail ul li a:hover {
    color: #d30000;
}

.f-latest-post-block .f-post-block {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.f-latest-post-block .f-post-block:first-child {
    padding-top: 0;
}

.f-latest-post-block .f-post-block:last-child {
    padding-bottom: 0;
    border: none;
}

.f-latest-post-block .f-post-block .post-image {
    text-decoration: none;
    flex: 0 0 60px;
    max-width: 60px;
    height: 60px;
    width: 100%;
    margin: 0 0 10px;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.f-latest-post-block .f-post-block .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: "object-fit: cover";
}

.f-latest-post-block .f-post-block a.post-image:hover {
    border-color: #ffffff;
}

.f-latest-post-block .f-post-block .post-detail p {
    font-size: 12px;
    line-height: 18px;
}

.f-latest-post-block .f-post-block .post-detail p a {
    color: rgba(255, 255, 255, 0.6);
}

.f-latest-post-block .f-post-block .post-detail p a:hover {
    color: #d30000;
}

.f-bottom {
    text-align: center;
    padding-top: 15px;
}

.footer-copyright {
    text-align: center;
    font-size: 11px;
    padding: 20px;
    background-color: #212121;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright .row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-copyright a {
    color: white;
}

.footer-copyright a:hover {
    color: #d30000;
}

.social-links-wrapper {
    display: flex;
    flex-direction: column;
}

.social-links-txt {
    display: none;
}

.footer-copyright ul {
    margin-bottom: 0;
}

.footer-copyright ul li {
    display: inline-flex;
    margin: 0 15px;
    padding: 0;
    font-size: 18px;
    line-height: 20px;
    list-style-type: none;
    color: rgba(255, 255, 255, 0.6);
}

/* ---------------------------- */
/*======== Footer End ========*/

/*======== Call to Action Start ========*/
.call-to-action {
    position: relative;
    color: black;
    background-color: white;
    border: 1px white solid;
    border-radius: 10px;
    padding: 10px;
    margin: 30px 0;
}

.call-to-action > * {
    display: inline-block;
    width: 100%;
}

.call-to-action a.red {
    color: #000000;
    /*  color: #d30000;*/
}

.call-to-action .fa-solid {
    width: 100px;
}

.call-to-action .info-item {
    display: inline-block;
}

.call-to-action p.text-left {
    text-align: left;
}

.call-to-action .cta-coin {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: white;
    width: 70px;
    height: 70px;
    border-radius: 35px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.call-to-action .cta-coin img {
    width: 60px;
    height: 60px;
}

.call-to-action .pie {
    position: absolute;
}

.call-to-action .trend {
    text-align: right;
    font-weight: 500;
    font-size: 18px;
    padding: 5px 10px;
}

.call-to-action .trend.up {
    color: green;
}

.call-to-action .trend.up::before {
    font-family: "FontAwesome";
    content: "\e098";
    display: inline-block;
    margin-right: 10px;
    transform: rotate(-10deg);
}

.call-to-action .trend.down {
    color: black;
}

.call-to-action .trend.down::before {
    font-family: "FontAwesome";
    content: "\e097";
    display: inline-block;
    margin-right: 10px;
    transform: rotate(10deg);
}

.call-to-action .dynamic-ticker,
.call-to-action .dynamic-balance {
    text-align: center;
    margin: 25px auto;
}

.call-to-action .dynamic-ticker,
.call-to-action .dynamic-ticker > span,
.call-to-action .dynamic-balance,
.call-to-action .dynamic-balance > span {
    font-family: "Oswald";
    color: var(--base-color-red);
}

.call-to-action .cta-btn {
    text-align: center;
}

.call-to-action .cta-btn .btn {
    padding: 5px 25px;
    border-radius: 15px;
}

.call-to-action .cta-btn:not(.no-chart, .start, .start_buy) .btn::before {
    font-family: "FontAwesome";
    content: "\f201";
    margin-right: 10px;
}
.call-to-action .start .btn::before {
    font-family: "FontAwesome";
    margin-right: 10px;

    content: "\f3ed";
}
.call-to-action .start_buy .btn::before {
    font-family: "FontAwesome";
    margin-right: 10px;

    content: "\f218";
}
.call-to-action .cta-contract {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #c5c5c5;
}

.call-to-action .contracts {
    text-align: center;
    margin-top: 30px;
}

.call-to-action .cta-txt > h2,
.call-to-action .cta-txt > p {
    text-align: center;
}

.call-to-action .cta-txt > h2 {
    font-size: 24px;
    color: var(--base-color-red);
}

.call-to-action ul.contacts-info-list {
    list-style: none;
}

.call-to-action ul.contacts-info-list > li {
    height: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 10px;
}

/*======== Call to Action End ========*/

/*======== FAQ page Start ========*/
.faq-accordion .panel {
    margin: 0 0 10px;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 2px #c5c5c5 solid;
}

.faq-accordion.bg-grey .panel {
    background-color: #e2e3e4;
    border: none;
}

.faq-accordion .panel .panel-heading {
    background: none;
    padding: 0;
}

.faq-accordion .panel .panel-heading .panel-title a {
    position: relative;
    font-weight: 500;
    display: block;
    background-color: transparent;
    text-decoration: none;
    font-size: 18px;
    line-height: 22px;
    padding: 15px 35px 15px 15px;
}

.faq-accordion .panel .panel-heading .panel-title a:hover {
    color: var(--base-color-red);
}

.faq-accordion .panel .panel-heading .panel-title a:before {
    font-family: "FontAwesome";
    position: absolute;
    content: "\f054";
    right: 15px;
    top: 30%;
    transition: all 0.4s;
}

.faq-accordion
.panel:not(:has(a.collapsed))
.panel-heading
.panel-title
a:before {
    transform: rotate(90deg);
}

.faq-accordion .panel .panel-body {
    border: none !important;
    font-size: 14px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.6);
    padding: 10px 15px 25px;
}

.faq-accordion .panel .panel-body p {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    margin-bottom: 20px;
}

.faq-accordion .panel .panel-body p:last-child {
    margin-bottom: 0;
}

.faq-accordion .panel .panel-body p a {
    color: #d30000;
}

.faq-accordion .panel .panel-body p a:hover {
    color: #a2a3a4;
}

.faq-accordion .panel .panel-body ul,
.faq-accordion .panel .panel-body ol {
    padding-left: 20px;
}

.faq-accordion .panel .panel-body ul li,
.faq-accordion .panel .panel-body ol li {
    font-size: 16px;
    line-height: 24px;
    color: inherit;
}

.faq-accordion .panel .panel-body ul li a {
    color: #d30000;
}

.faq-accordion .panel .panel-body ul li a:hover {
    color: #a2a3a4;
}

.faq-accordion .panel .panel-body iframe {
    width: 100%;
    height: 445px;
}

/*======== FAQ Page End ========*/

/*======== Contact Page Start ========*/
.contact-box {
    background: rgba(70, 70, 70, 0.3);
    border: 1px solid #3d3d3d;
    border-radius: 10px;
    padding: 20px;
    color: lightgray;
}

.contact-box form .row {
    margin-top: 15px;
}

.contact-box .control-label {
    color: lightgray;
}

/*======== Contact Page End ========*/

/*======== 404 Page Start ========*/
.not-found .main-wrapper {
    padding-bottom: 0;
}

.not-found .main-wrapper .row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.not-found p {
    color: #17181c;
}

.not-found .text-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.not-found .text-wrapper {
    width: 100%;
}

.not-found .text-wrapper p {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 20px;
}

.not-found .btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 30px;
    border-radius: 50px;
}

.not-found .email-wrapper {
    width: 100%;
    margin-top: 20px;
}

.not-found .email-wrapper p {
    color: black;
    font-size: 16px;
    line-height: 24px;
}

.not-found .email-wrapper a {
    text-decoration: none;
    font-weight: 700;
    font-style: italic;
    font-size: 16px;
    line-height: 24px;
}

/*======== 404 Page End ========*/

/*======== Article Page Start ========*/
.article {
    font-size: 16px;
    color: #d2d4d9;
}

.article a:not(.btn) {
    /* color: #ff5b5b; */
    color: #d30000;
}

.article a:not(.btn):hover {
    color: #d30000;
}

.article a.btn-red[disabled]:hover {
    background-color: white !important;
    color: #d30000 !important;
    cursor: not-allowed;
}

.article .article-container {
    border: 1px #303030 solid;
    border-radius: 10px;
    padding: 20px;
    background-color: #232529;
}

.article-container h2 {
    text-align: center;
    padding-top: 35px;
    color: white;
}

.article .article-container,
.article .article-container p {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 15px;
    color: #d2d4d9;
    font-weight: 300;
}

.article-container b,
.article-container strong {
    font-weight: 500;
    color: white;
}

ul,
ol {
    font-size: 16px;
    line-height: 1.5;
    margin-left: 15px;
}

ul > li,
ol > li {
    margin-bottom: 15px;
}

.article-container .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: white;
    font-size: 24px;
    border-radius: 30px;
    padding: 5px 40px;
    margin: 30px auto;
}

.article-container .input-group-sm input,
.article-container .input-group-sm>.input-group-btn>.btn {
    height: 3.5rem;
}
/*======== Article Page End ========*/

/*======== Video Article Page Start ========*/
.main-wrapper .trademark {
    margin: -10px 0 30px 0;
    text-align: center;
}

.main-wrapper .embed-container {
    position: relative;
    max-width: 100%;
    height: 0;
    padding-bottom: 69%;
    margin-bottom: 20px;
    background-image: url("../images/video_frame.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.main-wrapper .embed-container iframe {
    position: absolute;
    top: 5.5%;
    left: 4%;
    width: 92%;
    height: 76%;
}

.main-wrapper .embed-container a.frame-logo {
    position: absolute;
    bottom: 4.5%;
    left: 38%;
    width: 24%;
}

.main-wrapper .embed-container a.frame-logo img {
    width: 100%;
}

/*======== Video Article Page End ========*/

/*======== Charts Pages Start ========*/

#chart-container {
    margin-top: 50px;
}

#chart-container .chart-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: white;
}

#chart-container .chart-controls .chart-title {
    font-size: 18px;
    flex-basis: 100%;
}

#chart-container .chart-controls button.active {
    background-color: #505050;
}

#chart-container .chart-controls button:hover {
    background-color: #3f3f3f;
}

#chart-container .chart-controls .btn-outline {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 22px;
    padding: 5px 10px;
    background-color: transparent;
    border-radius: 6px;
    border: 1px grey solid;
}

#chart-container #chart {
    width: 100%;
    margin-top: 20px;
}

/*======== Charts Pages End ========*/

/*======== Internal Account Pages Start ========*/
.white-box {
    background: #ffffff;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}
.white-box > *:last-child, .white-box p:last-child {
    margin-bottom: 0;
}
.white-box:not(:first-child) {
    margin-top: 2rem;
}

.white-box .box-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.white-box h1, .white-box h2 {
    color: #17181c;
}

.white-box h2 {
    margin-top: 0;
}

.white-box .box-title p {
    font-size: 2.5rem;
    color: black;
    margin: 0;
}

.white-box table {
    color: black;
    width: 100%;
}
.white-box table:last-child {
    margin-bottom: 0;
}
.white-box table thead th {
    padding: 0.8rem;
}
.white-box table tbody td {
    padding: 0.8rem;
    border-top: 1px solid #ddd;
}

.white-box .table thead {
    display: none;
}
.white-box .table tbody tr {
    display: block;
}
.white-box .table tbody tr:not(:last-child) {
    margin-bottom: 2.5rem;
}
.white-box .table td {
    display: flex;
    width: 100%;
    border: none;
    vertical-align: middle;
    padding: 0.5rem 0;
}
.white-box .table td:last-child >.btn, .white-box .table td:last-child > .input-group {
    margin-top: 2rem;
}
.white-box .table td[label]::before {
    content: attr(label);
    font-weight: bold;
    width: 15rem;
}
.white-box .table td .btn {
    position: relative;
    width: 100%;
    padding: 0.5rem 2rem;
}
.white-box .table td .btn img {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 28px;
    height: 28px;
}
.white-box .input-group {
    width: 100%;
}
.white-box .input-group input, .white-box .input-group .btn {
    height: 3.5rem;
}
.white-box .table .currency-type img {
    display: none;
}

.white-box .buy-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.white-box .buy-buttons .currency-type {
    padding: 0.5rem;
}
.white-box .buy-buttons .currency-type img {
    width: 28px;
    height: 28px;
}
.white-box .buy-buttons .currency-type span {
    min-width: 11rem;
    padding: 0 1rem;
    font-weight: 500;
}
.white-box .dynamic-balance {
    text-align: center;
    font-size: 24px;
    margin: 2rem 0 4rem;
}

.white-box .history-btn-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}
.white-box .tip {
    border-bottom: 1px dashed grey;
    cursor: help;
}

.white-box #buy-form .form-control {
    height: 3.5rem;
}
.white-box #cdd_form .form-group {
    margin-top: 3rem;
}
.white-box .form .control-label, .modal .white-box .control-label {
    color: black;
    font-size: 16px;
}
.white-box #buy-form .input-group-btn:first-child .btn {
    display: flex;
    justify-content: space-between;
    border: 1px #ccc solid;
    border-radius: 4px 0 0 4px;
    box-shadow: none;
    -webkit-box-shadow: none;
}
.white-box #buy-form .input-group-btn:first-child .btn:active {
    outline: none;
}
.white-box #buy-form .input-group-btn:last-child .btn {
    padding: 5px 10px;
    margin-bottom: 16px;
    border-radius: 0 4px 4px 0;
}
.white-box #buy-form img {
    width: 22px;
}
.white-box #buy-form .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 2rem;
}
.white-box #buy-form .form-group:nth-child(2) {
    display: none;
}

.referral-box .fa-arrow-right {
    display: none;
}

/*======== Internal Account Pages End ========*/

.sitemap {
    font-size: 16px;
    padding-left: 30px;
    color: white;
}
.sitemap li, .sitemap li a  {
    color: white;
    line-height: 2.5;
}
.sitemap li a:hover {
    color: #d30000;
}

/* Simplex Form */

#simplex-form {
    position: relative;
    padding: 30px 0 10px 0;
}

#simplex-form .form-group {
    margin-bottom: 0;
    color: #d2d4d9;
}

#simplex-form .form-group b {
    font-weight: 500;
    color: white;
}

#simplex-form .inputFields {
    display: flex;
    width: 100%;
}

#simplex-form #crypto_amount,
#simplex-form #fiat_amount {
    border: solid 1px #505050 !important;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    color: white;
    background-color: transparent;
    margin-right: -1px;
}

#simplex-form #cryptoAddress {
    border: solid 1px #505050 !important;
    border-radius: 5px;
    font-size: 16px;
    color: white;
    background-color: transparent;
    margin-right: -1px;
}

#simplex-form .simplex-dd-container input {
    font-size: 16px;
    color: #e2e6e8;
}

#simplex-form .simplex-dd {
    border-radius: 0 5px 5px 0;
    border: solid 1px #505050 !important;
    background-color: #d30000;
    font-weight: 500;
}

#simplex-form .simplex-dd:focus {
    outline: none;
}

#simplex-form .simplex-continue-button {
    color: #ffffff;
    border-color: var(--base-color-red);
    background-color: var(--base-color-red);

    -webkit-animation: pulse 4s linear infinite;
    -moz-animation: pulse 4s linear infinite;
    -ms-animation: pulse 4s linear infinite;
    animation: pulse 4s linear infinite;
}

#simplex-form .powered-logo {
    display: block;
    text-align: center;
    padding: 8px 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: darkgrey;
}

#addresses {
    max-height: 400px;
    overflow-y: scroll;
    margin-bottom: 2rem;
}
#addresses::-webkit-scrollbar {
    width: 8px;
}
#addresses::-webkit-scrollbar-track {
    background: #333;
    border-radius: 10px;
}
#addresses::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
#addresses::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*======== Responsive Start ========*/
@media only screen and (min-width: 360px) {
    .banner-section .section-title {
        font-size: 25px;
        line-height: 40px;
        max-width: 330px;
        margin: 0 auto 25px;
    }

    .banner-section .banner-description {
        top: 60%;
    }
}

@media only screen and (min-width: 568px) {
    .navbar .navbar-header .btn {
        display: block;
    }

    .navbar-toggle {
        margin-left: 42px;
    }
}

@media only screen and (min-width: 640px) {
    .social-icons ul li {
        font-size: 25px;
        line-height: 25px;
        margin: 0 10px;
    }

    .social-icons ul li a {
        width: 50px;
        height: 50px;
    }

    .section-title {
        font-size: 40px;
        line-height: 45px;
        margin-bottom: 30px;
    }

    .banner-section .section-title {
        font-size: 42px;
        line-height: 55px;
        max-width: 540px;
    }

    .banner-section .banner-content p {
        font-size: 20px;
        max-width: 380px;
        margin: 0 auto;
        line-height: 1.5;
    }

    .make-payment-easy-section {
        padding: 35px 0 50px;
    }

    .payment-currency-section {
        padding-bottom: 35px;
        margin-top: -35px;
    }

    .make-payment-block .extra-small-block-title {
        font-size: 25px;
        line-height: 29px;
        padding: 25px 15px;
    }

    .faq-section {
        padding: 35px 0;
    }

    .trusted-platform-section {
        padding: 35px 0;
    }

    .our-featured-blog-section .featured-blog-block .image {
        height: 200px;
    }

    .search-blog-block .search-box .btn {
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: 0px;
        transform: translate(0, -50%);
    }

    .footer:before {
        width: 900px;
        height: 400px;
        margin-right: -200px;
    }

    .footer:after {
        width: 900px;
        height: 400px;
        margin-left: -200px;
    }

    .f-latest-post-block .f-post-block {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .f-latest-post-block .f-post-block .post-image {
        margin: 0 20px 0 0;
    }

    .faq-accordion .panel .panel-heading .panel-title a {
        padding: 15px 75px 15px 25px;
    }

    .faq-accordion .panel .panel-heading .panel-title a:before {
        right: 30px;
    }

    .faq-accordion .panel .panel-body {
        padding: 10px 25px 35px;
    }
}

@media only screen and (max-width: 767px) {
    .col-md-6 {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar .navbar-collapse {
        position: fixed;
        left: 100%;
        top: 87px;

        padding: 0;
        background-color: #17181c;
        z-index: 999;
        height: calc(100vh - 87px);
        overflow: auto;
        transition: 0.4s;
        -webkit-transition: 0.4s;
        -moz-transition: 0.4s;
        -ms-transition: 0.4s;
        -o-transition: 0.4s;
    }

    .navbar .navbar-collapse.in {
        left: 0;
    }

    .make-payment-easy-section .make-payment-list {
        max-width: 430px;
        width: 100%;
        margin: 0 auto;
    }

    .bank-list .col-sm-6 {
        width: 50%;
        float: left;
    }

    .white-box .table .currency-type.coin-container {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .white-box .table .currency-type.coin-container img {
        display: block;
        width: 28px;
        height: 28px;
    }

}

@media only screen and (min-width: 768px) {
    .btn {
        padding: 10px 25px 8px;
    }

    .container {
        width: 760px;
    }

    .main-page header,
    header {
        position: fixed;
    }

    .social-icons ul li {
        font-size: 30px;
        line-height: 30px;
    }

    .social-icons ul li a {
        width: 60px;
        height: 60px;
    }

    header.sticky {
        padding: 10px 0;
        background: rgba(0, 0, 0, 0.9);
    }

    header.sticky .navbar-brand img {
        width: 150px;
        transition: 0.6s;
    }

    .navbar {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar .navbar-collapse {
        margin-top: 15px;
    }

    .navbar .navbar-header .btn {
        display: none;
    }

    .navbar-nav > li {
        padding: 0;
        border: none;
    }

    .navbar-default .navbar-nav > li > a {
        font-size: 16px;
        line-height: 24px;
        padding: 12px 25px;
    }

    .navbar-nav > li > .dropdown-menu {
        padding: 0;
        border: none;
        background: #ffffff;
        overflow: hidden;
        border-radius: 20px;
        z-index: 99;
    }

    .navbar-nav .open .dropdown-menu > li > a {
        font-size: 16px;
        line-height: 16px;
        color: #202020;
        padding: 15px 27px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .open .dropdown-menu > li > a:focus,
    .navbar-nav .open .dropdown-menu > li > a:hover {
        background: #d30000;
        color: #fff;
    }

    .banner-section {
        max-height: 800px;
    }

    .section-title,
    .banner-section .section-title {
        font-size: 40px;
        line-height: 45px;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .banner-section .section-title .type-wrap {
        min-height: 90px;
    }

    .banner-section .section-title .type-wrap:before {
        width: 421px;
        background-size: 100% 100%;
    }

    .banner-section .banner-description {
        top: 60%;
    }

    .banner-section {
        height: 100%;
    }

    .banner-section .banner-description {
        top: 50%;
    }

    .banner-section .banner-content .sub-title {
        display: block;
        text-align: center;
        font-size: 16px;
        line-height: 24px;
        color: #ffffff;
        margin-bottom: 32px;
    }

    .banner-section .banner-content .sub-title img {
        display: inline-block;
        width: 45px;
        margin-bottom: 10px;
    }

    .banner-section .banner-content .sub-title span {
        display: block;
    }

    .section-title br {
        display: block;
    }

    .banner-section .buy-now-button .btn {
        width: 232px;
        padding: 19px 66px;
    }

    .make-payment-block .extra-small-block-title {
        font-size: 20px;
        line-height: 25px;
        padding: 25px 15px;
    }

    .payment-currency-section {
        margin-top: -106px;
        padding: 0;
    }

    .our-customer-say-section {
        background: url(../images/canada-currency-platform-bg.png) no-repeat #17181c;
        background-size: 100%;
    }

    .our-customer-say-section .our-customer-say-list {
        max-width: 100%;
    }

    .our-customer-say-section .our-customer-say-block {
        padding: 25px;
    }

    .our-customer-say-section .main-detail-block {
        padding-bottom: 50px;
    }

    .bank-block {
        padding: 0;
    }

    .bank-block h6 {
        font-size: 18px;
        line-height: 19px;
        margin: 16px 0 24px;
    }

    .faq-section {
        padding: 68px 0 136px;
    }

    .trusted-platform-section {
        padding: 50px 0;
    }

    .our-featured-blog-section .search-blog-block {
        padding-bottom: 66px;
    }

    .our-featured-blog-section .featured-blog-list {
        max-width: 100%;
    }

    .our-featured-blog-section .featured-blog-list .row {
        display: flex !important;
    }

    .our-featured-blog-section .featured-blog-block {
        padding: 27px 23px;
        border-radius: 30px;
    }

    .our-featured-blog-section .featured-blog-block .image {
        height: 224px;
        margin-bottom: 16px;
    }

    .footer:before {
        top: 50%;
        width: 1200px;
        height: 550px;
        margin-right: -300px;
        transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
    }

    .footer:after {
        top: 50%;
        width: 1200px;
        height: 550px;
        margin-left: -300px;
        transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
    }

    .f-copyright ul li {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-copyright .row {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .footer-copyright ul {
        padding-left: 20px;
    }

    .social-links-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .main-wrapper .title {
        padding-top: 127px;
    }

    .main-wrapper .title > h1 {
        font-size: 60px;
        line-height: 65px;
    }

    .main-wrapper .title.long-title > h1 {
        font-size: 48px;
    }

    .main-wrapper .title.title-sm > h1 {
        font-size: 40px;
        line-height: 55px;
    }

    .faq-accordion .panel {
        margin-bottom: 15px;
        border-radius: 12px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        -ms-border-radius: 12px;
        -o-border-radius: 12px;
    }

    .faq-accordion .panel .panel-heading .panel-title a {
        font-size: 20px;
        line-height: 25px;
        padding: 20px 75px 20px 35px;
    }

    .faq-accordion .panel .panel-heading .panel-title a:before {
        right: 40px;
    }

    .contact-box {
        padding: 30px;
    }

    .contact-panel .call-to-action {
        padding: 10px 20px;
    }

    .referral-box p,
    .referral-box li {
        font-weight: 300;
        font-size: 16px;
        padding-top: 16px;
    }

    .referral-box li {
        line-height: 24px;
    }

    .referral-box p {
        line-height: 32px;
    }

    .payment-currency-mobile {
        display: none;
    }

    .payment-currency-table {
        display: block;
        background: #ffffff;
        box-shadow: 0px 4px 54px 30px rgba(0, 0, 0, 0.05);
        border-radius: 30px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
    }

    .payment-currency-table .table-responsive {
        border: none;
    }

    .payment-currency-table .table thead tr th {
        /* font-family: "PoppinsRegular"; */
        font-size: 14px;
        line-height: 21px;
        color: black;
        padding: 42px;
        border: none;
    }

    .payment-currency-table .table tbody tr td {
        /* font-family: "PoppinsRegular"; */
        font-size: 16px;
        line-height: 24px;
        color: #000000;
        padding: 24.5px 42px;
        vertical-align: middle;
    }

    .payment-currency-table .table tbody tr td .btn-checkmark {
        display: none;
    }

    .payment-currency-table .table tbody tr td .currency-type {
        display: flex;
        align-items: center;
    }

    .payment-currency-table .table tbody tr td .currency-type img {
        width: 42px;
        height: 42px;
        margin-right: 13px;
        object-fit: cover;
        font-family: "object-fit: cover";
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }

    .fund-account-page .article-container table thead {
        display: table-header-group;
    }

    .fund-account-page .article-container table tr {
        display: table-row;
        margin-bottom: 0;
    }

    .fund-account-page .article-container table th,
    .fund-account-page .article-container table td {
        border-color: #f7ecec;
    }

    .fund-account-page .article-container table td {
        width: fit-content;
        display: table-cell;
        padding: 15px 5px;
    }

    .fund-account-page .article-container table td::before {
        display: none;
    }

    /* Internal Page Start */
    .white-box {
        background: #ffffff;
        border-radius: 2rem;
        -webkit-border-radius: 2rem;
        -moz-border-radius: 2rem;
        -ms-border-radius: 2rem;
        -o-border-radius: 2rem;
    }
    .white-box .box-title p {
        font-size: 3rem;
        line-height: 1.2;
    }

    .white-box table thead, .white-box .table thead {
        display: table-header-group;
    }
    .white-box table th, .white-box .table th {
        padding: 2rem 1rem;
        border-bottom: none;
    }

    .white-box table tbody tr, .white-box .table tbody tr {
        display: table-row;
        margin-bottom: 0;
    }
    .white-box table tbody td, .white-box .table td {
        display: table-cell;
        width: auto;
        padding: 2rem 1rem;
        border-top: 1px solid #ddd;
    }
    .white-box .table td:last-child >.btn, .white-box .table td:last-child > .input-group  {
        margin-top: 0;
    }
    .white-box .table td[label]::before {
        content: "";
    }
    .white-box .table td .btn {
        padding: 1rem 3rem;
        max-width: 20rem;
    }
    .white-box .table td .btn img {
        display: none;
    }

    .white-box .currency-type {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .white-box .table .currency-type img {
        display: block;
        width: 42px;
        height: 42px;
    }

    .white-box .buy-buttons .currency-type img {
        width: 40px;
        height: 40px;
    }
    .white-box .buy-buttons .currency-type span {
        min-width: 12rem;
    }

    .white-box .history-btn-group {
        flex-direction: row;
        gap: 5rem;
        margin-bottom: 3rem;
    }
    .white-box .history-btn-group .btn {
        flex: 1;
    }
    /* Internal Page End */

    .sitemap {
        font-size: 18px;
    }
}

@media only screen and (min-width: 992px) {
    .container {
        width: 990px;
    }

    header {
        padding: 30px 0;
    }

    .social-icons ul li {
        font-size: 35px;
        line-height: 35px;
    }

    .social-icons ul li a {
        width: 75px;
        height: 75px;
    }

    .navbar {
        flex-direction: row;
    }

    .navbar .navbar-header {
        min-width: 175px;
    }

    .navbar-header .navbar-brand img {
        width: 175px;
    }

    .navbar .navbar-collapse {
        display: flex !important;
        justify-content: center;
        margin-top: 0;
    }

    .navbar-nav {
        width: fit-content;
    }

    .navbar-nav > li > a {
        font-size: 16px;
        line-height: 22px;
        padding: 10px 18px;
    }

    .navbar-default .navbar-nav > li > a.btn {
        padding: 12px 25px;
        margin-left: 15px;
    }

    .call-to-action {
        margin-top: 0;
    }

    .social-links-wrapper .social-links-txt {
        display: block;
    }

    .main-wrapper .title {
        padding-top: 110px;
    }

    .section-title,
    .banner-section .section-title {
        font-size: 45px;
        line-height: 50px;
        margin-bottom: 35px;
    }

    .banner-section .section-title .type-wrap {
        min-height: 100px;
    }
    .banner-section .buy-now-button {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .banner-section .banner-content p {
        font-size: 26px;
        max-width: 520px;
    }

    .make-payment-easy-section {
        padding: 50px 0 80px;
    }

    .make-payment-easy-section
    .make-payment-list
    .row
    > *:first-child
    .make-payment-block
    > .extra-small-block-title {
        border-radius: 30px 0 0 0;
        -webkit-border-radius: 30px 0 0 0;
        -moz-border-radius: 30px 0 0 0;
        -ms-border-radius: 30px 0 0 0;
        -o-border-radius: 30px 0 0 0;
    }

    .make-payment-easy-section
    .make-payment-list
    .row
    > *:last-child
    .make-payment-block
    > .extra-small-block-title {
        border-radius: 0 30px 0 0;
        -webkit-border-radius: 0 30px 0 0;
        -moz-border-radius: 0 30px 0 0;
        -ms-border-radius: 0 30px 0 0;
        -o-border-radius: 0 30px 0 0;
    }

    .make-payment-block .make-payment-detail .detail p {
        font-size: 12px;
        line-height: 18px;
    }

    .make-payment-block .buy-now-button {
        display: none;
    }

    .make-payment-block:hover .buy-now-button {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
    }

    .make-payment-block .buy-now-button .btn {
        border-radius: 0 0 30px 30px;
    }

    .our-customer-say-section {
        padding: 50px 0;
    }

    .our-feature {
        padding: 30px 0 50px;
    }

    .feature-block {
        margin-bottom: 0;
    }

    .real-human-support-section {
        padding: 50px 0;
    }

    .our-featured-blog-section {
        padding: 50px 0;
    }

    .login .main-wrapper .container {
        padding: 0 110px;
    }

    .login-side-box .img-coin {
        transition: transform 0.3s;
    }

    .not-found .text-box {
        gap: 10px;
        align-items: start;
    }

    .not-found .main-wrapper .row {
        min-height: 100vh;
        flex-direction: row;
        align-items: center;
    }

    .not-found .text-wrapper p {
        font-size: 36px;
        line-height: 42px;
    }

    .not-found .btn {
        padding: 20px 46px;
    }

    .referral-box .fa-arrow-right {
        display: block;
    }

    .white-box #buy-form .form-group:nth-child(2) {
        display: block;
        padding-top: 3.6rem;
        color: dimgray;
    }

    #addresses {
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 1200px) {
    header {
        padding: 45px 0;
    }

    .container {
        width: 1190px;
    }

    .section-title,
    .banner-section .section-title {
        font-size: 50px;
        line-height: 55px;
        margin-bottom: 50px;
    }

    .banner-section .section-title .type-wrap {
        min-height: 120px;
    }

    .banner-section .buy-now-button .btn-red {
        -webkit-animation: none;
        -moz-animation: none;
        -ms-animation: none;
        animation: none;
    }

    .make-payment-easy-section {
        padding: 60px 0 90px;
    }

    .make-payment-block .buy-now-button .btn {
        padding: 20px;
    }

    .our-customer-say-section .our-customer-say-block {
        padding: 35px;
    }

    .make-payment-block .extra-small-block-title {
        font-size: 22px;
        line-height: 28px;
    }

    .make-payment-block .make-payment-detail .detail p {
        font-size: 14px;
        line-height: 21px;
    }

    .bank-block h6 {
        font-size: 25px;
        line-height: 29px;
        margin: 34px 0 0;
    }

    .footer:before {
        width: 1657px;
        height: 906px;
        margin-right: -432px;
    }

    .footer:after {
        width: 1657px;
        height: 906px;
        margin-left: -432px;
    }

    .footer-copyright {
        font-size: 14px;
    }

    .main-wrapper .title {
        padding-top: 140px;
    }

    .login .main-wrapper .container {
        padding: 0 150px;
    }

    #back-top {
        display: none !important;
    }
}

@media only screen and (min-width: 1300px) {
    .btn {
        padding: 12px 33px 10px;
    }

    .section-title,
    .banner-section .section-title {
        font-size: 60px;
        line-height: 65px;
        margin-bottom: 65px;
    }

    .social-icons ul li {
        font-size: 40px;
        line-height: 40px;
    }

    .social-icons ul li a {
        width: 85px;
        height: 85px;
    }

    .banner-section .section-title .type-wrap {
        min-height: 130px;
    }

    .banner-section .banner-content p {
        font-size: 28px;
        max-width: 680px;
    }

    .make-payment-easy-section .main-detail-block {
        padding-bottom: 50px;
    }

    .make-payment-block .extra-small-block-title {
        font-size: 25px;
        line-height: 29px;
    }

    .make-payment-block .buy-now-button .btn {
        font-size: 22px;
        line-height: 28px;
    }

    .our-feature {
        padding: 70px 0;
    }

    .our-featured-blog-section .main-detail-block {
        padding-bottom: 50px;
    }

    .faq-accordion .panel .panel-heading .panel-title a {
        font-size: 22px;
        line-height: 28px;
        padding: 20px 100px 20px 35px;
    }

    .f-block .f-title {
        margin-bottom: 35px;
    }
}

@media only screen and (min-width: 1400px) {
    .section-title,
    .banner-section .section-title {
        font-size: 70px;
        line-height: 75px;
    }

    .social-icons ul li {
        font-size: 50px;
        line-height: 50px;
        margin: 0 15px;
    }

    .social-icons ul li a {
        width: 103px;
        height: 103px;
    }

    .banner-section .section-title .type-wrap {
        min-height: 160px;
    }

    .make-payment-block .buy-now-button .btn {
        font-size: 25px;
        line-height: 29px;
    }

    .our-customer-say-section {
        padding: 150px 0;
    }

    .our-feature {
        padding: 70px 0 140px;
    }

    .real-human-support-section {
        padding: 73px 0 61px;
    }

    .our-featured-blog-section {
        padding: 156px 0 71px;
    }
}

@media only screen and (min-width: 1600px) {
    .not-found .text-wrapper p {
        font-weight: 600;
        font-size: 48px;
        line-height: 52px;
        margin-bottom: 40px;
    }
}

/*======== Responsive End ========*/

/*** new stuff ***/
#contact-form > .row > .col-md-1 {
    display: none;
}

#back-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99;
    display: block;
}
#back-top a {
    width: 44px;
    height: 44px;
    line-height: 44px;
    display: block;
    font-size: 14px;
    background: #777;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.popover-content-right {
    display: none;
    position: fixed;
    padding: 10px;
    background-color: #333;
    color: white;
    width: 200px;
    border-radius: 5px;
    transition: 0.5s;
}
.popover-content-right::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #333 transparent transparent;
}
.popover-content-top {
    display: none;
    position: fixed;
    padding: 10px;
    background-color: #333;
    color: white;
    width: 300px;
    border-radius: 5px;
}
.popover-content-top::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* Bootstarp 5 Class */

.lh-lg {
    line-height: 2;
}

.form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.09375rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.dropdown-btn {
    padding-right: 10px;
    padding-left: 10px;
    min-width: 76px;
}

.btn-lg,
.btn-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.09375rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.sm-padding-top {
    padding-top: 10px;
}




@media only screen and (min-width: 768px) {
    .offset-sm-1 {
        margin-left: 8.33333%;
    }

    .powered-logo {
        position: absolute;
        right: 0;
        bottom: 39px;
        margin: 0;
    }
    #chart-container .chart-controls {
        padding: 0 15px 0 50px;
        flex-wrap: nowrap;
    }
    #chart-container .chart-controls .chart-title {
        flex-basis: auto;
        flex-grow: 1;
    }
    #chart-container .chart-controls .btn-outline {
        width: 80px;
    }
}

.text-36B509 {
    color: #36b509 !important;
}

.text-D30000 {
    color: #d30000 !important;
}

.mini-chart {
    width: 150px;
    height: 50px;
}

/* Simplex Form End */

/* !!20231212pm3 coderc */

@media only screen and (max-width: 567px) {
    .history-header > a {
        width: 100% !important;
        height: 50px !important;
        font-size: 18px !important;
    }

    .history_content {
        margin-top: 100px;
        padding-left: 15px !important;
        padding-right: 15px !important;
        padding-top: 26px !important;
    }
    table.mobile-friendly thead,
    table.fund thead,
    table.sell thead,
    table.withdraw thead,
    table.history thead {
        display: none;
    }

    table.mobile-friendly > tbody > tr > td,
    table.fund > tbody > tr > td,
    table.sell > tbody > tr > td,
    table.withdraw > tbody > tr > td,
    table.history > tbody > tr > td {
        display: flex;
        border: none;
        padding: 5px 0;
        text-align: left;
        width: 350px;
    }
    table.mobile-friendly > tbody > tr > td::before,
    table.fund > tbody > tr > td::before,
    table.sell > tbody > tr > td::before,
    table.withdraw > tbody > tr > td::before {
        content: attr(label);
        font-weight: bold;
        width: 100px;
        min-width: 100px;
    }
    table.mobile-friendly > tbody > tr,
    table.fund > tbody > tr,
    table.sell > tbody > tr,
    table.withdraw > tbody > tr,
    table.history > tbody > tr {
        display: block;
        margin-bottom: 25px;
    }

    .table-logo {
        width: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .fund > tbody > tr > td,
    .fund > thead > tr > th {
        display: flex !important;
    }

    .article-container .col-md-10 .font-24 {
        margin-bottom: 10px !important;
        text-align: center;
    }

    .history_table_line {
        gap: 30px;
    }

    .history-header {
        display: block !important;
    }

    .history-header > a {
        width: 100% !important;
        height: 60px !important;
    }
}

@media only screen and (min-width: 568px) {
    .sell .table tbody tr td {
        padding: 24.5px 15.5px;
    }

    .sell .table thead tr th {
        padding: 24.5px 15.5px;
    }
}

@media only screen and (min-width: 768px) {
    .history-header > a {
        width: 50% !important;
        height: 70px !important;
    }

    .history_content {
        margin-top: 100px;
        padding-left: 35px !important;
        padding-right: 35px !important;
        padding-top: 26px !important;
    }
}

.content_caption {
    margin-top: 50px;
    margin-bottom: 50px;
}

.bottom_btn_margin {
    margin-top: 5px;
    margin-bottom: 15px;
    margin-left: 10px;
}

.text_left {
    text-align: left;
}

.d-unset {
    display: unset !important;
}

.acolor {
    color: white !important;
}
.align-items-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.my-3 {
    margin-top: 16px;
    margin-bottom: 16px;
}
.px-0 {
    padding-left: 0px;
    padding-right: 0px;
}
.mt-4 {
    margin-top: 24px;
}
.border-0 {
    border: 0px solid black;
}

/* 20240225pm9 */

@media screen and (max-width: 767px) {
    .responsive_table {
        width: 100%;
        overflow-x: scroll;
    }
}
.article .bg-white {
    background-color: white !important;
}
.article .bg-white p,
.bg-white strong {
    color: black;
}
.dropdown-btn {
    margin-bottom: 16px;
}
.referral-box .box {
    margin-top: 0;
}
.box {
    padding: 30px !important;
}
.box p {
    margin: 0 0 1.5em 0;
}
.box ul {
    margin: 0 0 2em 3em;
    font-size: 16px;
}

.box ul li {
    margin: 0 0 0.5em 0;
}
.fa-arrow-right {
    /* padding-top: 34px; used in blog.html */
}
.currency-type.small {
    width: 14px;
    height: 14px;
}
.currency-btn {
    padding: 3px 12px;
}
.input-group-btn ul {
    margin: 0;
    top: 70%;
}
.input-group-btn ul li {
    padding: 0;
}

.checkout {
    border-radius: 14px;
}

.table-logo {
    max-width: 100vw !important;
}

.kyc-label {
    color: white;
    margin-top: 30px;
    padding-bottom: 5px;
}

#coinrain_canvas {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    pointer-events: none;
}

#qr_btc,
#qr_eth {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 5px;
    height: 250px;
    width: 250px;
}

.modal ul,
.modal ol {
    font-size: 16px;
    line-height: 1.5;
    margin-left: 15px;
}

#add_voucher {
    padding: 5px 10px;
}

.white-box .dynamic-balance span {
    color: green;
}

.dynamic-balance span {
    font-weight: 700;
}


.pagination>li>a,.pagination>li>span {
    color: var(--base-color-red);
}

.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover {
    color: var(--base-color-red);
}

.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover {
    background-color: var(--base-color-red);
    border-color: #9b0000
}

.box ul.pagination {
    margin: 0 !important;
}

.box ol,
.box ul {
    margin-left: 15px;
}

.label {
    line-height: inherit;
}

.table input[type=file] {
    display: inline-block;
}

.flinksconnect {
    border: none;
}

#addy {
    word-break: break-all;
}

.btn-upload::before {
    font-family: "FontAwesome";
    content: "\f0ee";
    display: inline-block;
    margin-right: 10px;
}

#signature_pad_container {
    border: 1px solid #bbbbbb;
}

#map {
    height: 400px;
}

.notification {
    display: none;
}
