/* Copy Animation */
.base-color {
    color: hsl(var(--main)) !important;
}

.copyInput {
    display: inline-block;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.copied::after {
    position: absolute;
    top: 8px;
    right: 12%;
    width: 100px;
    display: block;
    content: "COPIED";
    font-size: 1em;
    padding: 5px 5px;
    color: #fff;
    background-color: hsl(var(--base));
    border-radius: 3px;
    opacity: 0;
    will-change: opacity, transform;
    animation: showcopied 1.5s ease;
}

@keyframes showcopied {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    50% {
        opacity: 0.7;
        transform: translateX(40%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
    }
}


.cookies-card {
    width: 520px;
    padding: 30px;
    color: #1E2337;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999999;
    transition: all .5s;
    background: #d1d1d1;
    border-radius: 5px;
}

[data-theme=light] .cookies-card {
    background-color: hsl(var(--section-bg));
}

[data-theme=light] .cookies-card p {
    font-weight: 300;
    color: hsl(var(--black)/0.7) !important;
}


.cookies-card.hide {
    bottom: -500px !important;
}

.radius--10px {
    border-radius: 10px;
}

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #6e6f70;
    color: #fff;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
}

.cookies-btn {
    color: #363636;
    text-decoration: none;
    padding: 10px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
}

.cookies-btn:hover {
    color: #363636;
}


@media (max-width: 767px) {
    .cookies-card {
        width: 100%;
        left: 0;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }
}




.hover-input-popup {
    position: relative;
}

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 130%;
    left: 50%;
    width: 280px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.input-popup::after {
    position: absolute;
    content: '';
    bottom: -19px;
    left: 50%;
    margin-left: -5px;
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #1a1a1a transparent;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.input-popup p {
    padding-left: 20px;
    position: relative;
}

.input-popup p::before {
    position: absolute;
    content: '';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    left: 0;
    top: 4px;
    line-height: 1;
    font-size: 18px;
}

.input-popup p.error {
    text-decoration: line-through;
}

.input-popup p.error::before {
    content: "\f057";
    color: #ea5455;
}

/* ======================= Quotex Complete Global & User Panel Theme ======================= */
:root {
  --base: 158 100% 36%;
  --main: #00b976;
}

body, .dashboard-fluid, .dashboard-body, .dashboard__right {
  background-color: #0e121b !important;
  color: #ffffff !important;
}

/* Sidebar Styling */
.sidebar-menu, .sidebar-menu__inner {
  background-color: #161b26 !important;
  border-right: 1px solid #222938 !important;
}

.sidebar-menu-list__link {
  color: #828a99 !important;
  border-radius: 6px !important;
  transition: all 0.2s ease !important;
}

.sidebar-menu-list__link:hover,
.sidebar-menu-list__link.active {
  background-color: #1f2636 !important;
  color: #00b976 !important;
  border-left: 3px solid #00b976 !important;
}

.sidebar-menu-list__link.active .icon,
.sidebar-menu-list__link:hover .icon {
  color: #00b976 !important;
}

/* Header & Topbar */
.dashboard-header, .dashboard-header__inner {
  background-color: #161b26 !important;
  border-bottom: 1px solid #222938 !important;
}

.user-info-dropdown {
  background-color: #161b26 !important;
  border: 1px solid #222938 !important;
}

.user-info-dropdown__link {
  color: #ffffff !important;
}

.user-info-dropdown__link:hover {
  background-color: #1f2636 !important;
  color: #00b976 !important;
}

/* Dashboard Cards & Panes */
.card, .dashboard-card, .wallet-card, .deposit-card, .withdraw-card, .p2p-card {
  background-color: #161b26 !important;
  border: 1px solid #222938 !important;
  border-radius: 10px !important;
  color: #ffffff !important;
}

.card-header {
  background-color: #1f2636 !important;
  border-bottom: 1px solid #222938 !important;
  color: #ffffff !important;
}

.card-footer {
  background-color: #1f2636 !important;
  border-top: 1px solid #222938 !important;
}

/* Offcanvas & Modals (Deposit/Withdraw) */
.offcanvas, .modal-content {
  background-color: #161b26 !important;
  border-left: 1px solid #222938 !important;
  border: 1px solid #222938 !important;
  color: #ffffff !important;
}

.offcanvas-header, .modal-header {
  border-bottom: 1px solid #222938 !important;
  background-color: #1f2636 !important;
}

.offcanvas-title, .modal-title {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* Form Controls & Inputs */
.form-control, .form-select, .form--control, select.form-control {
  background-color: #111520 !important;
  border: 1px solid #222938 !important;
  color: #ffffff !important;
  border-radius: 8px !important;
}

.form-control:focus, .form-select:focus {
  border-color: #00b976 !important;
  box-shadow: 0 0 0 0.25rem rgba(0, 185, 118, 0.25) !important;
}

.input-group-text {
  background-color: #1f2636 !important;
  border: 1px solid #222938 !important;
  color: #ffffff !important;
}

/* Buttons */
.btn--base, .btn-primary, .btn--success, .deposit__button, .withdraw__button, .btn--base.outline:hover {
  background: linear-gradient(135deg, #00c853 0%, #00b976 100%) !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(0, 185, 118, 0.3) !important;
  transition: all 0.2s ease !important;
}

.btn--base:hover, .btn-primary:hover, .btn--success:hover, .deposit__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 185, 118, 0.45) !important;
  color: #ffffff !important;
}

.btn--danger {
  background: linear-gradient(135deg, #ff4a5a 0%, #d50000 100%) !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* Tables */
.table {
  color: #ffffff !important;
  border-color: #222938 !important;
}

.table th {
  background-color: #1f2636 !important;
  color: #828a99 !important;
  border-bottom: 1px solid #222938 !important;
}

.table td {
  background-color: #161b26 !important;
  border-bottom: 1px solid #222938 !important;
  color: #ffffff !important;
}

/* List Groups */
.list-group-item {
  background-color: #111520 !important;
  border-color: #222938 !important;
  color: #ffffff !important;
}

/* Text Highlights */
.text--base, .text--success {
  color: #00b976 !important;
}

.bg--base, .bg--success {
  background-color: #00b976 !important;
}


.input-popup p.success::before {
    content: "\f058";
    color: #28c76f;
}

.show-filter {
    display: none;
}

@media(max-width:767px) {
    .responsive-filter-card {
        display: none;
        transition: none;
    }

    .show-filter {
        display: block;
    }
}

.verification-code-wrapper {
    box-shadow: var(--box-shadow) !important;
    background-color: hsl(var(--footer-bg)) !important;
    border: 0 !important;
}

.verification-code input {
    background-color: transparent !important;
    color: hsl(var(--black)) !important;
}

.verification-code::after {
    background-color: transparent !important;
}

.verification-code span {
    background-color: transparent !important;
    border-color: hsl(var(--base)) !important;
}

.verification-code input {
    letter-spacing: 67px !important;
}

/* ======================= Quotex Landing Page Styling ======================= */
.qx-section {
    padding: 60px 0;
    position: relative;
}

.qx-section-dark {
    background-color: #121722;
}

.qx-hero {
    padding: 80px 0 60px;
    background: radial-gradient(circle at 70% 30%, rgba(0, 185, 118, 0.08) 0%, transparent 60%);
}

.qx-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 20px;
}

.qx-hero-desc {
    font-size: 1.1rem;
    color: #a0aab8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.qx-btn-real {
    background: linear-gradient(135deg, #00c853 0%, #00b976 100%) !important;
    color: #ffffff !important;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 185, 118, 0.4);
    transition: all 0.3s ease;
    text-transform: none;
    font-size: 1rem;
    text-decoration: none;
}

.qx-btn-real:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 185, 118, 0.6);
    color: #ffffff !important;
}

.qx-btn-demo {
    background: #1f2636 !important;
    color: #ffffff !important;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    border: 1px solid #2e374a !important;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
}

.qx-btn-demo:hover {
    background: #2a3449 !important;
    border-color: #00b976 !important;
    color: #ffffff !important;
}

.qx-btn-outline {
    background: transparent !important;
    color: #00b976 !important;
    border: 2px solid #00b976 !important;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.qx-btn-outline:hover {
    background: #00b976 !important;
    color: #ffffff !important;
}

.qx-payments-row {
    background-color: #161b26;
    border-top: 1px solid #222938;
    border-bottom: 1px solid #222938;
    padding: 25px 0;
}

.qx-payment-img {
    max-height: 40px;
    width: auto;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.qx-payment-img:hover {
    filter: brightness(1.2);
}

.qx-card-box {
    background: #161b26;
    border: 1px solid #222938;
    border-radius: 12px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.qx-card-box:hover {
    border-color: #00b976;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.qx-card-icon img {
    max-height: 120px;
    margin-bottom: 20px;
}

.qx-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.qx-card-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.qx-prognosis-box {
    background: #161b26;
    border: 1px solid #222938;
    border-radius: 16px;
    padding: 40px;
}

.qx-btn-up {
    background: linear-gradient(135deg, #00c853 0%, #00b976 100%) !important;
    color: #ffffff !important;
    font-weight: 700;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
    text-decoration: none;
}

.qx-btn-up:hover {
    opacity: 0.9;
    color: #ffffff !important;
}

.qx-btn-down {
    background: linear-gradient(135deg, #ff4a5a 0%, #d50000 100%) !important;
    color: #ffffff !important;
    font-weight: 700;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 74, 90, 0.3);
    text-decoration: none;
}

.qx-btn-down:hover {
    opacity: 0.9;
    color: #ffffff !important;
}

.qx-review-card {
    background: #161b26;
    border: 1px solid #222938;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
}

.qx-review-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.qx-review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qx-review-user img {
    width: 24px;
    height: 24px;
}

.qx-faq-accordion .accordion-item {
    background: #161b26;
    border: 1px solid #222938;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.qx-faq-accordion .accordion-button {
    background: #161b26;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 18px 24px;
    box-shadow: none;
}

.qx-faq-accordion .accordion-button:not(.collapsed) {
    background: #1f2636;
    color: #00b976;
}

.qx-faq-accordion .accordion-body {
    background: #161b26;
    color: #94a3b8;
    padding: 20px 24px;
    line-height: 1.6;
}

/* ======================= Quotex Auth Pages (Sign Up / Sign In) ======================= */
.qx-auth-page {
    background-color: #0e121b;
    color: #ffffff;
}

.qx-auth-header {
    background-color: #161b26;
    border-bottom: 1px solid #222938;
}

.qx-auth-card {
    background: #161b26;
    border: 1px solid #222938;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.qx-auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
}

.qx-auth-tabs {
    display: flex;
    background: #0e121b;
    border-radius: 8px;
    padding: 4px;
    border: 1px solid #222938;
}

.qx-auth-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    color: #828a99;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.qx-auth-tab.active, .qx-auth-tab:hover {
    background: #1f2636;
    color: #00b976;
}

.qx-form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 6px;
}

.qx-form-input {
    background-color: #111520 !important;
    border: 1px solid #222938 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    font-size: 0.95rem !important;
}

.qx-form-input:focus {
    border-color: #00b976 !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 185, 118, 0.2) !important;
}

.qx-checkbox-label {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.4;
}

.qx-auth-footer {
    background-color: #0b0e14;
    border-top: 1px solid #1a202c !important;
}

/* ======================= Quotex Deposit Modal ======================= */
.qx-deposit-dialog {
    background-color: #161b26;
    color: #ffffff;
    border: 1px solid #222938;
    border-radius: 16px;
}

.qx-deposit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.qx-search-box {
    background: #0e121b;
    border: 1px solid #222938;
    border-radius: 8px;
    padding: 10px 16px;
    color: #ffffff;
    width: 100%;
}

.qx-category-pill {
    background: #0e121b;
    border: 1px solid #222938;
    border-radius: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qx-category-pill.active, .qx-category-pill:hover {
    border-color: #00b976;
    background: #1f2636;
}

.qx-method-card {
    background: #0e121b;
    border: 1px solid #222938;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qx-method-card:hover {
    border-color: #00b976;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 185, 118, 0.15);
}

.qx-method-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #1f2636;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qx-method-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
}

.qx-method-min {
    font-size: 0.8rem;
    color: #00b976;
}



