:root {
    --primary: #dcfc36;
    --secondary: #00ffc3;
}



.txt-primary,
.txt-primary:hover {
    color: var(--primary);
}

.bgg-primary {
    background-color: var(--primary);
    color: #000;
}

.txt-secondary,
.txt-secondary:hover {
    color: var(--secondary);
}

.connect-btn:disabled,
.connect-btn.disabled {
    background: linear-gradient(90deg, #ccc 0%, #ddd 55%);
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
}

.error-fields {
    color: #ff1e32;
}

.status-icon i {
    font-size: 0.6rem;
    margin-left: 6px;
    margin-right: 6px;
    vertical-align: middle;
    font-size: 7px;
    margin-bottom: 2px;
    color: #00ff9d;
    filter: drop-shadow(0 0 6px #00ff9d);
    /* animation: pulseDot 1.5s ease-in-out infinite; */
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-icon-arrow1 {
    background: #000;
    padding: 10px 16px 10px 22px;
    border-radius: 27px;
    font-weight: 600;
    cursor: pointer;
}

.btn-icon-arrow2 {
    background: #000;
    padding: 8px 14px 8px 18px;
    border-radius: 27px;
    font-weight: 600;
    cursor: pointer;
}

.btn-icon-arrow2 i,
.btn-icon-arrow1 i {
    color: #dbfb36;
}


/* global loader css */
.global-loader {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-loader .dot-spinner {
    display: flex;
    gap: 10px;
}

.global-loader .dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: bounce 0.6s infinite ease-in-out;
}

.global-loader .dot:nth-child(2) {
    animation-delay: 0.1s;
}

.global-loader .dot:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }
}

/* end global loader */


.input-txt-display {
    border: 1px solid #131c27;
    padding: 5px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    border-radius: 7px;
    background: #131c27;
}

.ellipsis-left {
    width: 90%;
    direction: rtl;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
}

.cursorPointer {
    cursor: pointer;
}

.txt-ellipsis-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* .bg-hover-effect strong, */
.table-responsive table tr th {
    color: var(--secondary)
}

.table-responsive table tr td {
    color: #ffffff;
    /* color:#aaa; */
}

.modal-content .modal-body,
.modal-content .modal-header {
    background-color: #131c27;
}

.modal-header .close {
    padding: 0.5rem 1rem 0rem;
    font-size: 2.5rem;
}

button.close {
    color: #fff;
}

.cus-dropdown-menu .dropdown-item {
    padding: 0.25rem 3.5rem;
}