@import url("http://fonts.googleapis.com/css?family=Overpass:300,400,600,700&amp;display=swap");
@import url("bootstrap.min.css");
@import url("ionicons.min.css");
@import url("jquery.mCustomScrollbar.min.css");
body {
    font-family: 'Overpass', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #18214D;
    min-height: 90vh !important;
    background: #FFFFFF;
    font-weight: 400;
    overflow-x: hidden;
}

/* ===== Page Loader ===== */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

/* #page-loader {
    opacity: 1;
    visibility: visible;
} */

.loader-overlay.active {
  opacity: 1;
  visibility: visible;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255,255,255,0.2);
    border-top-color: #00d084;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-text {
    color: #fff;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.toast {
    position: fixed; bottom:20px; left:50%; transform:translateX(-50%);
    padding:8px 15px; border-radius:6px;
    font-size:0.9rem; opacity:0; transition:opacity 0.3s ease; z-index: 1055;
}

.toast {
    position: fixed; bottom:20px; left:50%; transform:translateX(-50%);
    padding:8px 15px; border-radius: 6px;
    font-size:0.9rem; opacity:0; transition:opacity 0.3s ease;
}

.toast.green {
    color: #02a702 !important;
    background-color: #9bf99b;
}

.toast.red {
    color: #a90303;
    background-color: #ec9797;
}
.toast.show { opacity:1; }


.main-color {
    color: #25D366 !important;
}

.main-bg {
    background-color: #25D366 !important;
}

.b-none {
    border: none !important;
}

a,
a:hover {
    text-decoration: none;
    transition: 0.3s;
}

#loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.mtb100 {
    margin: 100px 0;
}

.mtb15 {
    margin: 15px 0;
}

.mt15 {
    margin-top: 15px;
}

.mb15 {
    margin-bottom: 15px;
}

.ml15 {
    margin-left: 15px;
}

.mr15 {
    margin-right: 15px;
}

.mb30 {
    margin-bottom: 30px;
}

.ptb70 {
    padding: 70px 0;
}

.pt70 {
    padding-top: 70px;
}

.pb40 {
    padding-bottom: 40px;
}

::-webkit-scrollbar {
    background: transparent;
    width: 3px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.07);
    border: solid rgba(88, 88, 88, 0.12) 2px;
    border-radius: 5px;
}

.dropdown-toggle::after {
    vertical-align: 1px;
}

thead tr th {
    padding: 8px 15px !important;
}

thead th {
    color: #758696;
    font-size: 13px;
    font-weight: 600;
    border: 0 !important;
}

tbody tr {
    color: #4a4a4a;
}

tbody tr:hover {
    background: #f6f8f9;
}

.input-group-text,
.form-control {
    border-radius: 5px;
}

.table tbody + tbody {
    border: none;
}

.heading {
    background: #f5f9fc;
    font-size: 14px;
    font-weight: 400;
    padding: 13px;
    margin: 0;
    color: #4a4a4a;
}

.green {
    color: #26de81;
}

.red {
    color: #ff231f;
}

.table td,
.table th {
    border-top: 1px solid #f0f3fa;
}

.light-bb,
.input-group-text {
    border: 1px solid #e0e3eb;
}

.dark-bb {
    border-bottom: 1px solid #2a2e39;
}

#darkDepthChart,
#lightDepthChart {
    width: 100%;
    height: 349px;
}

.sm-gutters {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.sm-gutters > .col,
.sm-gutters > [class*='col-'] {
    padding-right: 7.5px;
    padding-left: 7.5px;
}

.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #18214d59;
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #18214d59;
}

.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #18214d59;
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #18214d59;
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none;
}

.btn-1,
.btn-2 {
    display: inline-block;
    background: transparent;
    color: #25D366;
    border: 1px solid #25D366;
    border-radius: 5px;
    padding: 9px 25px;
    margin-left: 15px;
}

.btn-1:hover,
.btn-2:hover {
    background: #25D366;
    color: #fff;
    text-decoration: none;
}

.btn-2 {
    background: #25D366;
    color: #fff;
}

.bt-none {
    border-top: none !important;
}

@keyframes pulse {
    0% {
        opacity: 1;
        width: 7px;
        height: 7px;
        left: 0;
        top: 0;
    }
    95% {
        opacity: 0.1;
        left: -10.5px;
        top: -10.5px;
        width: 28px;
        height: 28px;
    }
    100% {
        opacity: 0;
        width: 7px;
        height: 7px;
        left: 0;
        top: 0;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
    100% {
        transform: translateY(0rem);
        opacity: 1;
    }
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

header nav a {
    color: #18214d;
}

header nav a:hover {
    color: #04ea60;
}

header .navbar-brand {
    padding: 0;
}

header .navbar-brand img {
    height: 45px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
}

header nav .nav-item.active a {
    color: #25D366;
}

header .nav-link.btn {
    padding: 5px 0;
}

.circle-pulse {
    background: #25D366;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    right: 12px;
    top: 12px;
}

.circle-pulse:after {
    background-color: #25D366;
    content: '';
    display: table;
    border-radius: 50%;
    position: absolute;
    animation-name: pulse;
    animation-duration: 0.9s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
}

.header-custom-icon .nav-link {
    line-height: 0;
    margin-top: 6px;
}

.dropdown-item {
    color: #18214d;
    font-size: 14px;
}

.dropdown-item:focus,
.dropdown-item:active {
    background-color: #f8f9fa;
    color: #16181b;
}

.header-img-icon .nav-link.dropdown-toggle {
    padding-right: 0;
}

.header-custom-icon a:after,
.header-img-icon a:after {
    display: none;
}

.header-custom-icon .dropdown-menu,
.header-img-icon .dropdown-menu {
    padding: 0;
    margin-top: 8px;
}

.dropdown-menu {
    max-width: 280px;
    position: absolute;
    right: 0;
    left: auto;
    border-radius: 5px;
    margin-top: 12px;
    border: 1px solid #f2f4f9;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 14px -6px;
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-name: slideIn;
}

.dropdown-menu::before {
    content: '';
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -8px;
    right: 5%;
    transform: rotate(45deg);
    border-top: 1px solid #f2f4f9;
    border-left: 1px solid #f2f4f9;
    z-index: -1;
}

.dropdown-menu p {
    color: #18214d;
    font-weight: 600;
}

.dropdown-menu a:hover {
    text-decoration: none;
}

.dropdown-menu a.text-muted:hover {
    color: #007bff !important;
}

.header-img-icon .nav-link img {
    width: 30px;
}

.header-custom-icon i {
    font-size: 20px;
    color: #758696;
}

.dropdown-header {
    padding: 12px 20px;
    font-size: 13px;
    border-bottom: 1px solid #f2f4f9;
}

.dropdown-body {
    padding: 5px;
    max-height: 290px;
    position: relative;
    overflow-y: auto;
}

.dropdown-body .dropdown-item {
    display: flex;
    align-items: center;
    padding: 9px 16px;
}

.dropdown-body .dropdown-item .content {
    margin-left: 15px;
    width: 200px;
    white-space: normal;
}

.dropdown-item .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
}

.dropdown-body .dropdown-item .content p {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
}

.dropdown-body .dropdown-item .content p.sub-text {
    font-size: 12px;
}

.dropdown-footer {
    padding: 10px 20px;
    border-top: 1px solid #f2f4f9;
    font-size: 14px;
}

.dropdown-item:nth-child(1) .icon {
    background: rgba(114, 124, 245, 0.1);
}

.dropdown-item:nth-child(1) .icon i {
    color: #727cf5;
}

.dropdown-item:nth-child(2) .icon {
    background: rgba(255, 51, 102, 0.1);
}

.dropdown-item:nth-child(2) .icon i {
    color: #ff5680;
}

.dropdown-item:nth-child(3) .icon {
    background: rgba(102, 209, 209, 0.1);
}

.dropdown-item:nth-child(3) .icon i {
    color: #66d1d1;
}

.dropdown-item:nth-child(4) .icon {
    background: rgba(251, 188, 6, 0.1);
}

.dropdown-item:nth-child(4) .icon i {
    color: #fbbc06;
}

.dropdown-item:nth-child(5) .icon {
    background: rgba(16, 183, 89, 0.1);
}

.dropdown-item:nth-child(5) .icon i {
    color: #10b759;
}

.header-img-icon .dropdown-header {
    padding: 0px 20px;
}

.header-img-icon .profile-nav .nav-item .nav-link {
    font-size: 14px;
    padding: 5px 20px;
}

.header-img-icon .profile-nav {
    padding-bottom: 11px;
}

.header-img-icon .profile-nav .nav-item .nav-link:hover {
    color: #18214d;
    background-color: #f8f9fa;
}

.header-img-icon .profile-nav .nav-item .nav-link.red {
    color: #f74745;
}

.header-img-icon .profile-nav .nav-item .nav-link.red:hover {
    color: #f74745 !important;
}

.header-img-icon .dropdown-body {
    padding: 10px 0 0;
}

.header-img-icon .dropdown-header .name {
    font-size: 16px;
}

.header-img-icon .dropdown-header {
    padding: 20px 20px 0;
}

.header-img-icon .profile-nav .nav-item .nav-link i {
    margin-right: 15px;
}

.landing-hero h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
}

.landing-hero {
    margin: 100px 0;
}

.landing-hero p {
    font-size: 16px;
    margin: 15px 0 40px;
}

.landing-hero input {
    padding: 26px 20px;
}

.landing-hero button {
    padding: 13px 20px;
}

.landing-info-one h2 {
    font-size: 30px;
    font-weight: 700;
}

.landing-info-one ul li i {
    color: #26de81;
    font-size: 22px;
    margin-right: 8px;
}

.landing-info-one ul li {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-top: 10px;
}

.landing-info-one p {
    margin: 15px 0 30px;
}

.landing-info-one-bg {
    background: url(../img/landing/dash-preview.png) no-repeat right 50%/48%;
}

.visible-mobile {
    display: none;
}

.landing-feature {
    text-align: center;
    border-top: 1px solid #e0e3eb;
    padding: 100px 0;
}

.landing-feature h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 50px;
}

.landing-feature-item {
    border: 1px solid #f2f4f9;
    box-shadow: #00000033 0px 2px 14px -6px;
    padding: 40px 20px;
    border-radius: 5px;
}

.landing-feature-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.landing-feature-item h3 {
    font-size: 20px;
}

.landing-number {
    background: #007bff;
    text-align: center;
    color: #fff;
    padding: 40px 0;
}

.landing-number h2,
.landing-number p {
    margin: 0;
}

.landing-number h2 {
    font-size: 60px;
    font-weight: 700;
}

.landing-number p {
    color: #ffffffb0;
    font-size: 16px;
}

.landing-feature-item p {
    margin-top: 15px;
}

.landing-feature.landing-start {
    border: none;
}

.landing-start .landing-feature-item span {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 120px;
    opacity: 0.07;
    line-height: 1;
    text-align: center;
}

.landing-sub {
    background: url(../img/landing/sub-bg.jpg) no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.landing-sub-content h2 {
    color: #fff;
    font-size: 36px;
}

.landing-sub:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    background: #0000003d;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.landing-sub-content a {
    color: #fff;
    border: 1px solid #fff;
    display: inline-block;
    font-size: 22px;
    padding: 10px 30px;
    border-radius: 5px;
    margin-top: 30px;
}

.landing-sub-content a:hover {
    background: #0069d9;
    border: 1px solid #0069d9;
}

footer.landing-footer img {
    width: 80px;
}

footer.landing-footer ul li {
    display: inline-block;
}

footer.landing-footer ul li a {
    color: #18214d;
    margin-left: 25px;
}

footer.landing-footer {
    padding: 10px 0;
}

footer.landing-footer ul li a:hover {
    color: #007bff;
}

.landing-coin-price {
    padding: 100px 0 80px;
}

footer.landing-footer-two {
    background: #fafbfc;
    padding: 50px 0;
    border-top: 1px solid #e0e3eb;
}

footer.landing-footer-two img {
    width: 120px;
}

footer.landing-footer-two p {
    margin: 20px 0;
}

footer.landing-footer-two .social-icon li {
    display: inline-block;
}

footer.landing-footer-two .social-icon li a {
    color: #18214d;
    font-size: 25px;
    margin-right: 15px;
}

footer.landing-footer-two .social-icon li:last-child a {
    margin-right: 0;
}

footer.landing-footer-two h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

footer.landing-footer-two ul li a {
    color: #18214d;
    margin-top: 5px;
    display: block;
}

footer.landing-footer-two ul li a:hover {
    color: #007bff;
}

.market-pairs {
    border: 1px solid #e0e3eb;
    padding-top: 14px;
    border-radius: 2px;
}

.market-pairs .input-group {
    padding: 0 14px;
}

.market-pairs span {
    background: transparent;
}

.market-pairs input {
    border-color: #e0e3eb;
    border-left: 0;
    font-weight: 300;
}

.market-pairs input:focus {
    box-shadow: none;
    border-color: #e0e3eb;
}

.market-pairs .nav {
    margin-top: 14px;
    background: #f5f9fc;
}

.market-pairs .nav-link {
    color: #4a4a4a;
    padding: 10px 13px;
}

.market-pairs .nav-link.active {
    color: #007bff;
    background: transparent;
}

.table {
    margin-bottom: 0;
}

.table td {
    font-size: 13px;
    padding: 10px 18px;
}

.market-pairs tbody tr td i {
    color: #75869696;
}

#STAR i {
    color: #007bff;
}

.market-pairs thead tr th,
.market-pairs tbody tr td {
    cursor: pointer;
    font-weight: 400;
}

.market-pairs tbody {
    height: 800px;
    overflow-y: auto;
    display: block;
}

.no-fluid .market-pairs tbody {
    height: 815px;
}

.market-pairs table,
.market-pairs tr {
    width: 100%;
    table-layout: fixed;
}

.market-pairs tr {
    float: left;
    clear: both;
    overflow: hidden;
}

.market-pairs thead th,
.market-pairs tbody td {
    width: 65%;
}

.order-book table,
.order-book tr,
.order-book td,
.order-book th {
    width: 100%;
    table-layout: fixed;
}

.order-book tr {
    float: left;
    clear: both;
    overflow: hidden;
}

.order-book .table thead th {
    font-weight: 400;
    font-size: 12px;
}

.order-book thead tr {
    border-bottom: 1px solid #e0e3eb;
}

.order-book tbody tr,
.order-book tbody td {
    border: none;
}

.order-book {
    border: 1px solid #e0e3eb;
    border-radius: 2px;
}

.red-bg-80,
.red-bg-60,
.red-bg-40,
.red-bg-20,
.red-bg-10,
.red-bg-8,
.red-bg-5,
.red-bg,
.green-bg-80,
.green-bg-60,
.green-bg-40,
.green-bg-20,
.green-bg-10,
.green-bg-8,
.green-bg-5,
.green-bg {
    position: relative;
}

.red-bg-80:after,
.red-bg-60:after,
.red-bg-40:after,
.red-bg-20:after,
.red-bg-10:after,
.red-bg-8:after,
.red-bg-5:after,
.red-bg:after {
    position: absolute;
    content: "";
    background: #de262663;
    right: 0;
    top: 0;
    width: 280px;
    height: 45px;
}

.red-bg-60:after {
    width: 240px;
}

.red-bg-40:after {
    width: 200px;
}

.red-bg-20:after {
    width: 160px;
}

.red-bg-10:after {
    width: 120px;
}

.red-bg-8:after {
    width: 80px;
}

.red-bg-5:after {
    width: 50px;
}

.red-bg:after {
    width: 30px;
}

.green-bg-80:after,
.green-bg-60:after,
.green-bg-40:after,
.green-bg-20:after,
.green-bg-10:after,
.green-bg-8:after,
.green-bg-5:after,
.green-bg:after {
    position: absolute;
    content: "";
    background: #26de8163;
    right: 0;
    top: 0;
    width: 280px;
    height: 45px;
}

.green-bg-60:after {
    width: 240px;
}

.green-bg-40:after {
    width: 200px;
}

.green-bg-20:after {
    width: 160px;
}

.green-bg-10:after {
    width: 120px;
}

.green-bg-8:after {
    width: 80px;
}

.green-bg-5:after {
    width: 50px;
}

.green-bg:after {
    width: 30px;
}

.ob-heading span {
    color: #4a4a4a;
    display: block;
    font-size: 12px;
    font-weight: 400;
}

.ob-heading td {
    padding: 5px 12px;
    cursor: default;
}

.ob-heading tr {
    border-top: 1px solid #f0f3fa !important;
    border-bottom: 1px solid #f0f3fa !important;
}

.ob-heading tr:hover {
    background: #fff;
}

.ob-heading td:first-child {
    width: 65%;
}

.order-book tbody {
    display: block;
    overflow-y: auto;
    height: 211px;
}

tbody.ob-heading {
    height: inherit;
}

.market-trade input {
    border: 1px solid #e0e3eb;
    font-weight: 300;
}

.market-trade input:focus {
    box-shadow: none;
    border-color: #e0e3eb;
}

.market-trade {
    border: 1px solid #e0e3eb;
    border-radius: 2px;
}

.market-trade .tab-content {
    height: 357px;
    overflow-y: auto;
    padding: 14px;
}

.market-trade .nav {
    padding: 14px 14px 0;
}

.market-trade .nav .nav-item .nav-link.active {
    background: #fff;
    color: #007bff;
}

.market-trade .nav .nav-item .nav-link {
    color: #4a4a4a;
    padding: 0;
}

.market-trade .input-group-text {
    background: #eff2f6;
    color: #4a4a4a;
    font-weight: 300;
}

.market-trade .input-group {
    margin-bottom: 14px;
}

.market-trade .nav-item {
    margin-right: 30px;
}

.market-trade-list li a {
    background: #eff2f6;
    color: #4a4a4a;
    font-weight: 300;
    padding: 3px 15px;
    border-radius: 5px;
}

.market-trade-list li {
    display: inline-block;
    margin-right: 7px;
    margin-bottom: 7px;
}

.market-trade-list li:last-child {
    margin-right: 0;
}

.market-trade-buy .market-trade-list li a:hover {
    text-decoration: none;
    background: #26a69a;
    color: #fff;
}

.market-trade-sell .market-trade-list li a:hover {
    text-decoration: none;
    background: #ef5350;
    color: #fff;
}

.market-trade button.buy,
.market-trade button.sell {
    background: #26de81;
    color: #fff;
    text-transform: uppercase;
    padding: 10px;
    margin-top: 30px;
    width: 100%;
    box-shadow: 0px 0px 15px 0px #26de81ad;
}

.market-trade button.sell {
    background: #ff231f;
    box-shadow: 0px 0px 15px 0px #ff231fad;
}

.market-trade p {
    margin: 5px 0;
    font-size: 13px;
    color: #4a4a4a;
}

.market-trade p span {
    float: right;
}

.market-trade-list {
    margin-bottom: 23px;
}

.market-trade-item {
    width: 100%;
}

.market-trade-buy,
.market-trade-sell {
    width: 100%;
}

.market-trade-buy {
    padding: 0 15px 0 0;
}

.market-trade-sell {
    padding: 0 0 0 15px;
    border-left: 1px solid #e0e3eb;
}

.market-history .nav {
    background: #F5F9FC;
}

.market-history .nav-link {
    color: #4a4a4a;
    padding: 10px 13px;
}

.market-history .nav-link.active {
    color: #007bff;
    background: transparent;
}

.market-history thead tr th,
.market-history tbody tr td {
    cursor: pointer;
    font-weight: 400;
}

.market-history tbody {
    height: 315px;
    overflow-y: auto;
    display: block;
}

.market-history table,
.market-history tr,
.market-history td,
.market-history th {
    width: 100%;
    table-layout: fixed;
}

.market-history tr {
    float: left;
    clear: both;
    overflow: hidden;
}

.market-history {
    border: 1px solid #e0e3eb;
    border-radius: 2px;
}

.market-news {
    border: 1px solid #e0e3eb;
    border-radius: 2px;
}

.market-news li a {
    color: #4a4a4a;
    font-size: 11px;
    display: block;
    text-decoration: none;
}

.market-news li:hover {
    background: #f6f8f9;
}

.market-news li strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
    color: #4a4a4ac7;
}

.market-news li span {
    display: block;
    margin-top: 5px;
}

.market-news li {
    border-bottom: 1px solid #f0f3fa;
    padding: 10px 13px;
}

.market-news li:last-child {
    border: 0;
}

.market-news ul {
    height: 348px;
    overflow-y: auto;
}

.market-order th {
    width: 13%;
}

.no-data {
    position: absolute;
    right: 48%;
    top: 48%;
    text-align: center;
    color: #b9c2ca;
}

.no-data i {
    font-size: 100px;
    display: block;
    line-height: 0px;
    color: #dce1e5;
}

.market-order-item {
    color: #758696;
    padding: 8px 15px;
}

.market-order {
    border-top: 0;
    min-height: 392px;
    border: 1px solid #e0e3eb;
    border-radius: 2px;
}

.markets-chart > div {
    width: 110%;
    margin-left: -16px;
}

.markets-container {
    position: relative;
    overflow: hidden;
    height: 159px;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.04);
    border-radius: 5px;
    margin-bottom: 30px;
}

.markets-chart {
    position: absolute;
    top: 40px;
    width: 100%;
    left: 0;
}

.markets-content span.green,
.markets-content span.red {
    all: unset;
    position: absolute;
    right: 0;
    background: #26a69a;
    color: #fff;
    top: 15px;
    padding: 3px 12px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    font-weight: 600;
}

.markets-content span.red {
    background: #ef5350;
}

.markets-content h2 {
    font-size: 14px;
    top: 14px;
    position: absolute;
    left: 15px;
    color: #4a4a4a;
}

.markets-content p {
    position: absolute;
    top: 32px;
    left: 15px;
    font-size: 16px;
}

.markets-pair-list tr {
    cursor: pointer;
}

.markets-pair-list th,
.markets-pair-list td {
    padding: 15px !important;
    width: 16%;
    font-size: 14px;
}

.markets-pair-list tbody tr td i {
    color: #75869696;
}

.markets-pair-list .nav-link.active {
    color: #007bff;
    background: transparent;
}

.markets-pair-list .nav-link {
    color: #4a4a4a;
}

.markets-pair-list .nav {
    background: #f5f9fc;
    padding: 7px 0;
}

.markets-pair-list th {
    font-weight: 400;
}

.markets-pair-list td img {
    width: 18px;
    vertical-align: text-top;
    margin-right: 5px;
}

.markets-pair-list .load-more {
    border: 1px solid #e0e3eb;
    display: inline-block;
    padding: 11px 30px 8px;
    color: #4a4a4a;
    margin-top: 50px;
    transition: 0.3s;
}

.markets-pair-list .load-more i {
    margin-left: 10px;
}

.markets-pair-list .load-more:hover {
    background: #00d084;
    color: #fff;
    border: 1px solid #00d084;
}

.markets-item {
    margin-bottom: 30px;
}

.markets-capital-item {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 14px -6px;
    padding: 40px 0 0 0;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #f2f4f9;
    height: 347px;
    overflow: hidden;
    margin-bottom: 30px;
}

.markets-capital-chart {
    margin-left: -10px;
}

.markets-capital-item img {
    width: 25px;
    margin-top: -3px;
    margin-right: 2px;
}

.markets-capital-item h4 {
    margin-top: 16px;
    margin-bottom: 15px;
    font-size: 20px;
}

.markets-capital-item h2 {
    font-size: 26px;
}

.markets-capital-details h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.market-capital-ticker .markets-capital-item {
    height: 96.2%;
    margin-bottom: 5px;
}

.form-access form {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 14px -6px;
    border-radius: 5px;
    padding: 30px;
    border: 1px solid #f2f4f9;
    min-width: 350px;
}

.form-access .form-group input {
    border: 1px solid #e0e3eb;
    height: 45px;
    color: #18214d;
    font-size: 14px;
}

.form-access .form-group input:focus {
    box-shadow: none;
}

.form-access a:hover {
    text-decoration: none;
}

.form-access span {
    text-align: center;
    display: block;
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: -5px;
    font-weight: 600;
}

.form-access .text-right {
    margin-top: -5px;
    font-weight: 600;
}

.form-access button {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    margin-top: 20px;
}

.form-access .custom-control-label::before,
.form-access .custom-control-label::after {
    top: 2px;
}

.form-access .custom-control-label::before {
    border: #cbd2df solid 1px;
}

.form-access h2 {
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}

.form-access h2 a {
    font-weight: 600;
}

.error-page h2 {
    font-size: 250px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
}

.error-page p {
    font-size: 16px;
    margin-bottom: 40px;
}

.error-page a {
    border: 1px solid #e0e3eb;
    display: inline-block;
    padding: 11px 30px 8px;
    color: #4a4a4a;
    transition: .3s;
}

.error-page a:hover {
    background: #007bff;
    color: #fff;
    border: 1px solid #007bff;
}

.error-page a i {
    margin-left: 10px;
}

.technical-analysis .tradingview-widget-container {
    margin-bottom: 30px;
}

.symbol-info .tradingview-widget-container {
    margin-bottom: 15px;
}

.markets-overview .tradingview-widget-container {
    margin-bottom: 30px;
}

.settings .card {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 14px -6px;
    border-radius: 5px;
    border: none;
    margin-bottom: 15px;
}

.settings-nav {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 14px -6px;
    border-radius: 5px;
}

.settings-nav .nav-link {
    border-radius: 0;
    text-transform: uppercase;
    color: #18214d;
    font-weight: 600;
    margin: 2px 0;
    padding: 10px 20px;
}

.settings-nav .nav-link i {
    margin-right: 10px;
}

.settings .card-title {
    font-size: 16px;
    margin-bottom: 30px;
}

.settings-profile .col-md-6 {
    margin-bottom: 20px;
}

.settings-profile input,
.settings-profile select {
    border: 1px solid #e0e3eb;
    border-radius: 5px;
    font-size: 14px;
    height: 45px;
}

.settings-profile input[type='submit'] {
    background: #007bff;
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    height: inherit;
    font-size: 16px;
    margin-top: 10px;
}

.settings-profile .custom-file {
    display: inline-block;
    width: 20%;
    margin-left: 20px;
}

.settings-profile .custom-file label {
    border: 1px solid #e0e3eb;
}

.settings-profile .custom-file label:after {
    background: #007bff;
    color: #fff;
    font-weight: 600;
}

.settings .wallet .nav-pills img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.settings .wallet .nav-pills h2 {
    margin-bottom: 0;
    line-height: 1;
    color: #18214d;
    font-size: 22px;
}

.settings .wallet .nav-pills p {
    margin-bottom: 0;
    color: #18214d;
}

.settings .wallet .nav-pills a.active {
    background: #0f7dff;
}

.settings .wallet .nav-pills a {
    border-top: 1px solid #f0f3fa;
    padding: 15px;
}

.settings .wallet .nav-pills a:first-child,
.settings-nav .nav-link:first-child {
    border-top: 0;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.settings .wallet .nav-pills a:last-child,
.settings .settings-nav .nav-link:last-child {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.settings .wallet .nav-pills h3 {
    color: #18214d;
    margin-bottom: 0;
}

.settings .wallet .nav-pills {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 14px -6px;
    border-radius: 5px;
}

.settings .wallet .nav-pills a {
    border-radius: 0;
}

.settings .wallet .nav-pills a.active h2,
.settings .wallet .nav-pills a.active h3,
.settings .wallet .nav-pills a.active p {
    color: #ffffff;
}

.settings .wallet .tab-content li i {
    font-size: 22px;
    color: #26de81;
    background: rgba(15, 125, 255, 0.13);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    text-align: center;
    line-height: 45px;
    margin-right: 15px;
}

.settings .wallet .tab-content h2 {
    margin-bottom: 0;
    font-size: 18px;
}

.settings .wallet .tab-content h3 {
    margin-bottom: 0;
    font-size: 18px;
}

.settings .wallet .tab-content li:first-child {
    border-bottom: 1px solid #f0f3fa;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.settings .wallet .tab-content button.green {
    background: #26de81;
    color: #ffffff;
    box-shadow: 0px 0px 15px 0px #26de81ad;
}

.settings .wallet .tab-content button.red {
    background: #ff231f;
    box-shadow: 0px 0px 15px 0px #ff231fad;
    color: #ffffff;
}

.settings .wallet .tab-content button {
    padding: 12px 60px;
    margin-right: 10px;
    margin-bottom: 20px;
}

.settings .wallet .tab-content button:focus {
    box-shadow: none;
}

.settings .wallet .tab-content ul {
    margin: 0 0 40px;
}

.settings .wallet-address input {
    padding: 25px 15px;
    font-size: 14px;
}

.settings .wallet-address .input-group-prepend button {
    padding: 13px 20px;
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

.settings .wallet-address input {
    border: 1px solid #e0e3eb;
}

.settings .wallet-history i {
    margin-left: 14px;
}

.settings .wallet-address .input-group {
    padding-top: 30px;
}

.settings .wallet .tab-content h2.wallet-title {
    color: #18214d;
    font-size: 16px;
}

.settings-notification li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0f3fa;
    align-items: center;
}

.settings-notification li:first-child {
    padding-top: 0;
}

.settings-notification li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.settings-notification li span {
    color: #18214d59;
}

.settings-notification li p {
    margin-bottom: 0;
}

.settings .custom-control-label {
    cursor: pointer;
}

.wallet-history .ion-md-trash {
    font-size: 16px;
    cursor: pointer;
}

.wallet-history {
    overflow-x: auto;
}

#dark,
#dark header {
    background: #131722;
}

#dark header nav a {
    color: #ffffff;
}

#dark header nav a:hover {
    color: #04ea60;
}

#dark header nav a.btn:hover {
    color: #ffffff;
}

#dark header nav .nav-item.active a {
    color: #25D366;
}

#dark .market-pairs {
    border: 1px solid #2a2e39;
    background: #131722;
}

#dark tr {
    background: #131722;
}

#dark .market-pairs .table td,
#dark .market-pairs .table th,
#dark .landing-feature {
    border-top: 1px solid #2a2e39;
}

#dark .market-history .table td,
#dark .market-history .table th {
    border-top: 1px solid #2a2e39;
}

#dark .order-book thead tr {
    border-bottom: 1px solid #2a2e39;
}

#dark .order-book,
#dark .market-history,
#dark .market-news,
#dark .landing-feature-item {
    border: 1px solid #2a2e39;
}

#dark tbody tr:hover {
    background: #2a2e39;
}

#dark .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #69727a;
}

#dark .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #69727a;
}

#dark .form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #69727a;
}

#dark .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #69727a;
}

#dark tbody tr {
    color: #ffffff;
}

#dark thead th,
#dark .market-pairs .nav-link {
    color: #4f5966;
}

#dark .market-pairs .nav-link.active,
#dark #STAR i {
    color: #ffffff;
}

#dark .green {
    color: #26de81;
}

#dark .red {
    color: #ff231f;
}

#dark .market-pairs .nav {
    background: #1c2030;
}

#dark .market-pairs input,
#dark .market-pairs span {
    border-color: #2a2e39;
    background: #2a2e39;
}

#dark .market-pairs input {
    color: #ffffff;
}

#dark .heading {
    background: #1c2030;
    color: #ffffff;
}

#dark .ob-heading tr {
    border-top: 1px solid #2a2e39 !important;
    border-bottom: 1px solid #2a2e39 !important;
}

#dark .ob-heading tr:hover {
    background: #131722;
    cursor: default;
}

#dark .ob-heading span {
    color: #4f5966;
}

#dark .dropdown-menu {
    background: #131722;
    box-shadow: 0 0 10px 0 #131722;
    border: 1px solid #2a2e39;
}

#dark .dropdown-item:focus,
#dark .dropdown-item:hover {
    background-color: #2a2e39;
    color: #ffffff;
}

#dark .market-history .nav {
    background: #1c2030;
}

#dark .market-history .nav-link.active {
    color: #ffffff;
}

#dark .market-history .nav-link {
    color: #4f5966;
}

#dark .red-bg-80:after,
#dark .red-bg-60:after,
#dark .red-bg-40:after,
#dark .red-bg-20:after,
#dark .red-bg-10:after,
#dark .red-bg-8:after,
#dark .red-bg-5:after,
#dark .red-bg:after {
    background: #ff231f63;
}

#dark .market-news {
    background: #131722;
}

#dark .market-news li {
    border-bottom: 1px solid #2a2e39;
}

#dark .market-news li:hover {
    background: #2a2e39;
}

#dark .market-news li strong,
#dark .market-news li a {
    color: #c5cbce;
}

#dark .market-order {
    background: #131722;
}

#dark .no-data i,
#dark .no-data {
    color: #2a2e39;
}

#dark .market-trade {
    border: 1px solid #2a2e39;
    background: #131722;
}

#dark .market-trade .nav .nav-item .nav-link.active {
    background: transparent;
    color: #ffffff;
}

#dark .market-trade .nav .nav-item .nav-link {
    color: #4f5966;
}

#dark .market-trade p {
    color: #c5cbce;
}

#dark .market-trade-list li a {
    background: #2a2e39;
    color: #ffffff;
}

#dark .market-trade input {
    border: 1px solid #2a2e39;
    background: #2a2e39;
    color: #ffffff;
}

#dark .market-trade .input-group-text {
    background: #2a2e39;
    color: #ffffff;
    border-color: #2a2e39;
}

#dark .market-trade-buy .market-trade-list li a:hover {
    background: #26de81;
    color: #fff;
}

#dark .market-trade-sell .market-trade-list li a:hover {
    background: #ff231f;
    color: #fff;
}

#dark #darkDepthChart {
    background: #131722;
}

#dark .markets {
    background: #131722;
}

#dark .table td,
#dark table th {
    border-top: 1px solid #2a2e39;
}

#dark .markets-pair-list .nav {
    background: #1c2030;
}

#dark .markets-pair-list .nav-link.active,
#dark #STAR i {
    color: #ffffff;
}

#dark thead th,
#dark .markets-pair-list .nav-link {
    color: #4f5966;
}

#dark .markets-pair-list .load-more {
    border: 1px solid #00d084;
    color: #ffffff;
}

#dark .markets-pair-list .load-more:hover {
    color: #fff;
    background-color: #00d084;
    border: 1px solid #00d084 !important;
}

#dark .markets-content h2,
#dark .markets-content p {
    color: #ffffff;
}

#dark .markets-content span.green,
#dark .markets-content span.red {
    color: #fff;
}

#dark .market-trade-sell {
    border-left: 1px solid #2a2e39;
}

#dark .markets-container {
    background: #1e222d;
}

#dark .sign-up-form h3 {
    border-top: 0;
    margin-top: 0;
    padding-top: 15px;
}

#dark header nav .nav-item.active a.btn:hover {
    color: #fff;
}

#dark .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #04ea60;
    background-color: #04ea60;
}

#dark .dropdown-menu::before {
    background: #131722;
    border-top: 1px solid #2a2e39;
    border-left: 1px solid #2a2e39;
}

#dark .dropdown-menu p {
    color: #ffffff;
}

#dark .dropdown-header {
    border-bottom: 1px solid #2a2e39;
}

#dark .dropdown-footer {
    border-top: 1px solid #2a2e39;
}

#dark .header-img-icon .profile-nav .nav-item .nav-link:hover {
    background-color: #2a2e39;
    color: #ffffff;
}

#dark .form-control,
#dark .settings-profile select {
    background-color: #2a2e39;
    border: 1px solid #2a2e39;
    color: #ffffff;
}

#dark .form-access form {
    padding: 30px;
    border-radius: 5px;
    min-width: 350px;
    box-shadow: 0 0 10px 0 #131722;
    border: 1px solid #2a2e39;
}

#dark .form-access h2,
#dark .form-access {
    color: #ffffff;
}

#dark .form-access .custom-control-label::before {
    border: #2a2e39 solid 1px;
    background-color: #2a2e39;
}

#dark .error-page a {
    border: 1px solid #2a2e39;
    color: #ffffff;
}

#dark .error-page a:hover {
    border: 1px solid #007bff;
    background: #007bff;
    color: #ffffff;
}

#dark .error-page h2,
#dark .error-page p {
    color: #c5cbce;
}

#dark .wallet .nav-pills a,
#dark .wallet-history {
    border-top: 1px solid #2a2e39;
}

#dark .wallet .nav {
    background: #1e222d;
}

#dark .wallet h2,
#dark .wallet h3,
#dark .wallet h4,
#dark .wallet p {
    color: #ffffff;
}

#dark .wallet button.green,
#dark .wallet button.red,
#dark .wallet .nav-pills a.active h2,
#dark .wallet .nav-pills a.active h3,
#dark .wallet .nav-pills a.active p {
    color: #ffffff;
}

#dark .wallet .tab-content li:first-child {
    border-bottom: 1px solid #2a2e39;
}

#dark .wallet-history tr {
    background: #1e222d;
}

#dark .wallet-address input,
#dark .wallet-address input:focus {
    border: 1px solid #2a2e39;
    background: #2a2e39;
    box-shadow: none;
    color: #ffffff;
}

#dark .depth-chart-inner {
    border: 1px solid #2a2e39;
}

#dark .markets-capital-item {
    box-shadow: 0 0 10px 0 #131722;
    border: 1px solid #2a2e39;
}

#dark .markets-capital-item h2,
#dark .markets-capital-item h4 {
    color: #fff;
}

#dark .settings .card {
    background: #1e222d;
}

#dark .settings .card-title {
    color: #fff;
}

#dark .settings-nav {
    background: #1e222d;
}

#dark .settings-nav .nav-link {
    color: #ffffff;
}

#dark .settings-notification li {
    border-bottom: 1px solid #2a2e39;
}

#dark .settings-notification li:last-child {
    border-bottom: 0;
}

#dark .settings-notification p {
    color: #ffffff;
}

#dark .settings-notification span {
    color: #4f5966;
}

#dark .settings label {
    color: #fff;
}

#dark .settings .custom-file-label {
    background: #2a2e39;
    border: 1px solid #2a2e39;
    color: #616d75;
}

#dark .settings-profile input[type='submit'] {
    border: 1px solid #007bff;
}

#dark .btn-1:hover,
#dark .btn-2:hover,
#dark .landing-hero,
#dark .landing-info-one,
#dark .landing-feature,
#dark footer.landing-footer ul li a {
    color: #fff;
}

#dark .landing-info-one-bg {
    background: url(../img/landing/dash-preview-dark.png) no-repeat right 50%/48%;
}

#dark .landing-feature-item img {
    filter: invert(1);
}

#dark footer.landing-footer-two {
    background: #2a2e39;
    color: #fff;
    border-color: #2a2e39;
}

#dark footer.landing-footer-two ul li a {
    color: #ffffffbd;
}

#dark footer.landing-footer-two ul li a:hover {
    color: #007bff;
}

@media only screen and (max-width: 1434px) {
    .market-pairs tbody {
        height: 760px;
    }
    .no-fluid .market-pairs tbody {
        height: 815px;
    }
    .settings-profile .custom-file {
        width: 25%;
    }
}

@media only screen and (max-width: 1300px) {
    .market-pairs tbody {
        height: 740px;
    }
    .no-fluid .market-pairs tbody {
        height: 755px;
    }
}

@media only screen and (max-width: 1200px) {
    .markets-capital-item {
        height: 289px;
    }
}

@media only screen and (max-width: 991px) {
    footer.landing-footer-two h3 {
        margin-top: 30px;
    }
    .tradingview-tecnical-analys {
        margin-top: 50px;
    }
    .btn-1,
    .btn-2 {
        margin: 8px;
        text-align: center;
    }
    .mtb100 {
        margin: 50px 0;
    }
    .landing-hero {
        margin: 50px 0;
    }
    .landing-number p {
        margin-bottom: 40px;
    }
    .landing-number {
        padding: 40px 0 0;
    }
    .tradingview-gain-and-loser {
        margin-bottom: 50px;
    }
    .landing-feature {
        padding: 50px 0 30px;
    }
    .landing-sub {
        padding: 50px 0;
    }
    .landing-sub-content h2 {
        font-size: 26px;
    }
    .landing-number h2 {
        font-size: 40px;
    }
    .visible-mobile {
        display: block;
        margin-top: 50px;
    }
    .landing-hero h2 {
        font-size: 36px;
    }
    .landing-feature-item {
        margin-bottom: 30px;
    }
    .landing-info-one-bg,
    #dark .landing-info-one-bg {
        background: none;
    }
    .settings-nav {
        margin-bottom: 15px;
    }
    .settings-profile .custom-file {
        width: 35%;
    }
    
    header nav button:not(#menu) {
        background: linear-gradient(290deg, #f5f5f5, #f1f1f1);
    }

    header nav button:not(#menu) i {
        color: #20A10B !important;
    }
}

@media only screen and (max-width: 918px) {
    .market-history tbody {
        height: 274px;
    }
}

@media only screen and (max-width: 792px) {
    .market-pairs tbody {
        height: 699px;
    }
}

@media only screen and (max-width: 768px) {
    footer.landing-footer {
        text-align: center;
    }
    footer.landing-footer img {
        margin-bottom: 10px;
    }
    footer.landing-footer .d-flex {
        display: block !important;
    }
    .settings-profile .custom-file {
        width: 45%;
    }
    header button.navbar-toggler i {
        font-size: 30px;
        color: #4a4a4a;
    }
    header button.navbar-toggler:focus {
        outline: none;
    }
    .navbar-collapse .dropdown.menu-avatar-icon {
        margin-top: 10px;
    }
    .no-fluid .market-pairs {
        margin-bottom: 15px;
    }
    .no-fluid .order-book {
        margin-top: 15px;
    }
    .circle-pulse {
        left: 27px;
        right: inherit;
    }
    .dropdown-menu::before {
        right: inherit;
        left: 5%;
    }
    .wallet .nav {
        margin-bottom: 30px;
    }
    .wallet-address img {
        margin-top: 40px;
    }
    #dark header button.navbar-toggler i {
        color: #c5cbce;
    }
    .market-order-item {
        padding: 5px 5px;
        overflow: hidden;
    }
    .market-order-item li {
        font-size: 12px;
    }
    .markets-capital-item {
        height: 304px;
    }
}

@media only screen and (max-width: 576px) {
    .markets-capital-item {
        height: 91.4%;
    }

    .landing-footer li {
        margin: 5px 0;
    }
}

/*# sourceMappingURL=style.css.map */
/* Home Page */
p {
    margin: 0 !important;
}

.small-view-container {
    border-top: 1px solid #d6d2d2;
    border-bottom: 1px solid #918f8f;
    background-color: #25D366;
}

.small-tv-view {
    margin: auto;
    width: 145px;
    color: #f1f1f1;
    border-right: 1px solid #efefef;
}

.small-tv-view i,
.stars i {
    color: #fff;
    font-size: 10px !important;
}

.small-tv-view i.star,
.stars i.star {
    color: #fd1515;
}

.landing-info-one ul li {
    font-weight: 800;
    font-size: 25px;
    padding: 20px 0;
    border-bottom: 1px solid #403f3f;
}

.landing-info-one ul li img {
    margin: auto;
}

.landing-info-one ul li span {
    width: 80px;
    height: 80px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
    background-color: #99e39e51;
}


.card-with-chart-bg {
  position: relative;
  background: #fff;
  color: #fff;
  border-radius: 16px;
  min-width: 350px;
  height: fit-content;
  padding-bottom: 70px;
  overflow: hidden;
}

.chart-line-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  scale: 1.15;
  height: 100px; /* height of the graph area */
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 100'><defs><linearGradient id='g' x1='0%' y1='0%' x2='100%' y2='0%'><stop offset='0%' stop-color='%2304ea60'/><stop offset='100%' stop-color='%2300ff99'/></linearGradient><filter id='glow' x='-50%' y='-50%' width='200%' height='200%'><feGaussianBlur stdDeviation='4' result='blur'/><feMerge><feMergeNode in='blur'/><feMergeNode in='SourceGraphic'/></feMerge></filter></defs><polygon points='0,100 0,80 30,60 60,40 90,30 120,40 150,60 180,50 210,70 240,55 270,30 300,50 330,40 360,60 360,100' fill='%2304ea6022'/><polyline points='0,80 30,60 60,40 90,30 120,40 150,60 180,50 210,70 240,55 270,30 300,50 330,40 360,60' fill='none' stroke='url(%23g)' stroke-width='2' stroke-linecap='round' filter='url(%23glow)'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: 0;
}

.card-content {
    position: relative;
    z-index: 1;
    padding: 30px;
}

.card-content h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #000;
}

.card-content p {
    font-size: 0.95rem;
    color: #ccc;
}

.top-tvs button,
.features div.icon-cover,
.contact-details button {
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 14px;
    background: linear-gradient(to top, #01210c, #04ea60);
}

.styled-bg {
    background: linear-gradient(to top, #01210c, #04ea60);
}

.top-tvs button i,
.contact-details button i {
    color: #fff;
    margin-top: 5px;
    font-size: 24px;
}

.top-tvs .stars i:not(.star) {
    color: #000;
}

.top-tvs button:hover i {
    scale: 1.05;
}

.top-tvs span {
    color: #fff;
    position: absolute;
    right: 7px;
    top: 7px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    background-color: #000000e4;
    border-radius: 50%;
}


@keyframes dance-float {
  0%, 100% {
    transform: translateY(4.5px);
  }
  50% {
    transform: translateY(6px);
  }
}

.dance-float {
  animation: dance-float 4s ease-in-out infinite;
}


.features {
    border-radius: 1.5rem;
    padding: 4rem 5rem;
    background-repeat: no-repeat;
    border: 1px solid rgb(225 225 225/0.2);
    background: linear-gradient(to right, rgba(94, 107, 129, 0.204), #111);
}

.features div.icon-cover {
    width: 90px;
    height: 90px;
    margin: auto;
}

.card {
  transition: all 0.4s ease-in-out;
}

.card:hover {
  transform: scale(1.003);
}

.swiper {
    padding: 10px 0;
}

.categories .swiper-slide {
    height: 100%;
    margin-left: 30px;
}

.categories .card {
    cursor:pointer;
    color: #fff;
    width: 390px;
    background: linear-gradient(290deg, #ffffff54, #04ea60);
}

.categories .card:hover {
    transform: translateY(-5px) scale(1.02);
}

.categories p.styled-bg,
.categories i.styled-bg {
    width: 40px;
    height: 40px;
    color: #fff;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.categories .card span {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 97px;
    opacity: 0.08;
    line-height: 1;
    text-align: center;
}

.cta {
    border-radius: 1.5rem;
    padding: 4rem 5rem;
        border: none;
    background-repeat: no-repeat;
    background: linear-gradient(290deg, #ffffff54, #04ea60);
}

.cta button {
    color: #fff;
    background-color: #000;
    border: none;
    padding: 22px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta button:hover {
        background-color: #000000e0;
}



.sticker-wrapper {
  overflow: hidden;
  width: 100%;
  z-index: -1;
  transform: translate3d(0,0,0);
  position: relative;
  background-color: #0e1a13; 
}

.sticker-track {
  display: flex;
  width: max-content;
  animation: scrollStickers 25s linear infinite;
}

.small-tv-view {
    white-space: nowrap;
    display: inline-block;
    color: #fff;
    cursor: pointer;
    max-width: 400px;
    width: fit-content;
}

@keyframes scrollStickers {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


.myCardSwiper {
  width: 95%;
  height: fit-content;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-card {
  width: 90%;
  height: 85%;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 30px rgba(0,0,0,0.3);
  text-align: center;
}

.swipe-hint {
  text-align: center;
  color: #aaa;
  font-size: 14px;
  margin: 10px 0;
  letter-spacing: 2px;
  position: relative;
  z-index: 10;
}

.swipe-hint::before,
.swipe-hint::after {
  content: "";
  display: inline-block;
  width: 25%;
  height: 1px;
  background: #aaa;
  vertical-align: middle;
  margin: 0 10px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: inherit; /* optional: keeps original border */
}

.no-outline:focus {
  outline: none !important;
  box-shadow: none !important;
}




.whatsapp-tv-area {
    border-radius: 18px;
}

.wallet .card-with-chart-bg{
    padding: 0;
    padding-bottom: 250px;
    height: fit-content;
    position: relative;
}

.wallet .markets-capital-chart {
    position: absolute;
    bottom: -10px;
    width: 110%;
    left: 0px;
}

.wallet .stars i {
    color: #000;
}

.wallet .stars i.star {
    color: #04ea60;
}

.wallet .tab-content li{
   border-bottom: 1px solid #2a2e39;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.link-follower {
    border-radius: 5px;
}

.wallet .input-group-prepend button {
    background-color: #04ea60;
    border: none;
}

.wallet .review {
    border-bottom: 1px dashed #2a2e39;
}

.wallet .review i:not(.star) {
    color: #f1f1f1;
}

.wallet .review:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.wallet .choice-area {
    border-radius: 20px;
    background-color: #25D366;
}

.wallet .choice-area button {
    all: unset;
    text-align: center;
    width: fit-content;
    color: #fff;
    border: none;
    width: 24.3%;
    padding: 10px 0;
    cursor: pointer;
    font-size: 14px;
    background-color: #25D366;
}

.wallet .choice-area button:hover {
    outline: 0;
    border: none;
}

.wallet .choice-area button:first-child {
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

.wallet .choice-area button:last-child {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}

.wallet .choice-area button.active {
    border-radius: 18px;
    background-color: #111;
    transition: all 0.3s ease-in-out;
}

#report-page input[type='submit'] {
    background-color: #04ea60;
    color: #fff;
    border: none !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    outline: none;
}

#my-follows button.green {
    background: #05914b;
    color: #ffffff;
    box-shadow: 0px 0px 15px 0px #26de81ad;
}

#my-follows button.red {
    background: #ff231f;
    box-shadow: 0px 0px 15px 0px #ff231fad;
    color: #ffffff;
}

/* #my-follows button {
    padding: 12px 60px;
    margin-right: 10px;
    margin-bottom: 20px;
} */

#my-follows button:focus {
    box-shadow: none;
}

#my-follows .w-100 {
    color: #000;
    border: 1px solid #10b75879;
    background-color: #f1f1f1;
    border-radius: 5px;
}

.notification .icon-wrapper {
    all: unset;
    color: #fff;
    width: 200px;  
    height: 65px ;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #26de81;
}

.notification {
    width: 100%;
    color: #fff;
    cursor: pointer;
    background-color: #00000039;
    margin-bottom: 20px;
}

.notification:last-child {
    margin-bottom: 0;
}

.notification .icon-wrapper i {
    font-size: 25px;
}

.slider-wrapper {
    position: relative;
}

.card-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 10px;
}
.card-slider::-webkit-scrollbar {
    display: none; /* hide scrollbar */
}

.follow-card {
    min-width: 700px;
    max-width: 700px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #10b75879;
    flex-shrink: 0;
    cursor: pointer;
    margin-bottom: -20px;
}

.slider-btn {
    all: unset;
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    transform: translateY(-50%);
    background: #10b758;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}
.slider-btn.left { left: -20px; }
.slider-btn.right { right: -20px; }

@media(max-width: 768px) {
    .slider-btn { display: none; } /* Hide arrows on mobile */
}

#review-page i {
    color: #838179 !important;
}

#review-page i.star {
    color: #fbbc06 !important;
}

#review-page input[type='submit'] {
    border: none !important;
}

#review-page input[type='submit']:hover {
    transition: all 0.3s ease-in-out;
    background-color: #0eb054 !important;
}

#my-reviews-page .stars i {
    color: #758696 !important;
}


#my-reviews-page .stars i.star {
    color: #04ea60 !important;
}

#my-reviews-page .review {
    border-bottom: 1px solid #2a2e39;
}


/* Overlay */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Modal box */
.custom-modal {
  background: #fff;
  width: 95%;
  max-width: 400px;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  position: relative;
}

/* Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-title {
  font-size: 20px;
  font-weight: bold;
}

.modal-close {
  font-size: 22px;
  cursor: pointer;
}

/* Form */
.modal-form .form-group {
  margin-bottom: 15px;
}


.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 6px;
  font-size: 15px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}

.modal-btn {
  width: 100%;
  padding: 12px;
  background-color: #10b758;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.modal-btn:hover {
  background-color: #0e9f4f;
}

/* Footer */
.modal-footer {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.open-modal-btn {
  padding: 10px 20px;
  background: #10b758;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.signin-dark {
    cursor: pointer;
}

.custom-modal a {
    cursor: pointer;
}

.border-none {
    border: 0 !important;
}

/* ✨ Page transition fade effect */
.fade-transition {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-transition.show {
  opacity: 1;
  transform: translateY(0);
}

/* animation for smooth transitions */
.fade-transition { opacity: 0; transform: translateY(6px); transition: opacity .35s ease, transform .35s ease; }
.fade-transition.show { opacity: 1; transform: translateY(0); }

/* small styles for tv logo */
.tv-cell img.tv-logo { width:30PX; height:30PX; border-radius:50%; object-fit:cover; margin-right:5px; vertical-align:middle; }

/* Glow effect for active card */
.glow-active {
  box-shadow: 0 0 25px 3px rgba(0, 255, 150, 0.6);
  transform: scale(1.03);
  transition: all 0.3s ease;
}

/* Back to all button */
.back-to-all {
  background: var(--primary-color, #00c48c);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  width: 100% !important;
  margin-bottom: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.back-to-all:hover { background: #00b07b; }

/* Hide other cards on mobile */
@media (max-width: 768px) {
  .markets-container.d-none { display: none !important; }
}


.auth-indicator {
    position: fixed;
    bottom: 10px;
    right: 15px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    z-index: 2000;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.logged-in { color: #1dd1a1; }
.logged-out { color: #ff6b6b; }

.loginStatusBox {
    color: #ffffff;
    border-radius: 7px;
    padding: 4px 8px;
    margin-left: 15px;
}

.loggedIn {
    border: 1px solid #000000;
    background-color: #099e40;
}

.loggedOut {
    border: 1px solid #000000;
    background-color: #0a180f;
}

.user-dropdown {
  position: relative;
}

.dropdown-menu-custom {
  position: absolute;
  right: 0;
  top: 110%;
  background: #fff !important;
  border: 1px solid #ddd;
  border-radius: 8px;
  min-width: 160px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  list-style: none;
  padding: 5px 0;
  margin: 0;
  display: none;
  z-index: 1000;
}

.dropdown-menu-custom li a,
.dropdown-menu-custom li b {
  display: block;
  padding: 8px 15px;
  border-top: 1px solid #f1f1f1;
  color: #000 !important;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-menu-custom li b {
  border-top: 0;
  color: #10b758 !important;
}

.dropdown-menu-custom li a:hover {
  background: #f5f5f5;
}


.user-dropdown.active .dropdown-menu-custom {
  display: block;
}

.dropdown-menu-custom {
    display: none;
    position: absolute;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    right: 0;
    top: 100%;
    z-index: 100;
}
.dropdown-menu-custom.active {
    display: block;
}
.user-dropdown img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
}

.tv-search-wrapper {
  position: relative;       /* or fixed/absolute depending on design */
  z-index: 99999 !important; 
  isolation: isolate;       /* create an isolated stacking context */
  transform: translateZ(0); /* create its own layer (GPU) */
  -webkit-transform: translateZ(0);
  will-change: transform;   /* hint to browser */
}


.search-results-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 199999 !important;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.search-results-list.active {
    display: block;
    opacity: 1;
    z-index: 199999 !important;
    transform: translateY(0);
}

.search-results-list li {
    padding: 10px 15px;
    cursor: pointer;
    color: #000;
    z-index: 199999 !important;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.search-results-list li img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.search-results-list li:hover {
    background: #f0f0f0;
}
