
.bop-section-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #764ba2;
    letter-spacing: 0.02em;
}

.bop-amount-title {
    margin-top: 24px;
}

.bop-method-ui-wrapper {
    position: relative;
    margin-bottom: 24px;
    width: 100%;
    overflow: hidden;
}

.bop-method-ui {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 4px 0 20px 0;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .bop-method-ui {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .bop-method-ui {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .bop-method-ui {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

.bop-history-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
}

.bop-method-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 20px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.bop-method-card:hover {
    border-color: #764ba2;
    background: #fafafa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 43, 69, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.bop-method-card.active {
    border-color: #764ba2;
    border-width: 2px;
    background: #f5f6f8;
    box-shadow: 0 4px 12px rgba(36, 43, 69, 0.15), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.bop-method-card img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.bop-method-card:hover img {
    transform: scale(1.05);
}

.bop-method-card.active img {
    animation: logoSlide 0.4s ease;
}

@keyframes logoSlide {
    0% {
        transform: translateX(-5px);
        opacity: 0.7;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.bop-method-card span {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    max-width: 100%;
}

.bop-method-card.active span {
    color: #764ba2;
    animation: textSlide 0.4s ease;
}

@keyframes textSlide {
    0% {
        transform: translateX(-8px);
        opacity: 0.7;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.bop-method-check {
    display: none;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #764ba2;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.bop-method-card.active .bop-method-check {
    display: inline-flex;
    opacity: 1;
    transform: scale(1);
}

.bop-method-check::before {
    content: "✓";
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.bop-bonus-header {
    cursor: pointer;
    padding: 15px 20px;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease, border-width 0.3s ease;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    opacity: 0;
    overflow: hidden;
    border-width: 0;
    visibility: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.bop-bonus-header.show {
    max-height: 100px;
    padding: 15px 20px;
    margin-bottom: 14px;
    opacity: 1;
    border-width: 1.5px;
    visibility: visible;
}

.bop-bonus-header:hover {
    border-color: #764ba2;
    background: #fafafa;
    box-shadow: 0 2px 4px rgba(36, 43, 69, 0.08);
}

.bop-bonus-header-title {
    font-size: 14px;
    font-weight: 600;
    color: #764ba2;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

.bop-bonus-header-title::before {
    content: "🎁";
    font-size: 18px;
}

.bop-bonus-toggle {
    font-size: 12px;
    color: #764ba2;
    user-select: none;
    font-weight: 600;
    padding: 6px 14px;
    background: #f0f2f7;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.bop-bonus-header:hover .bop-bonus-toggle {
    background: #e8ecf5;
}

.bop-bonus-card {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
}

.bop-bonus-card.show {
    max-height: 500px;
    padding: 12px 0;
    margin-bottom: 20px;
}

.bop-bonus-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.bop-bonus-tier {
    padding: 13px 20px;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.bop-bonus-tier:hover {
    border-color: #764ba2;
    background: #fafafa;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(36, 43, 69, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.bop-bonus-tier-amount {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: -0.01em;
}

.bop-bonus-tier-pct {
    font-size: 17px;
    font-weight: 700;
    color: #764ba2;
    padding: 7px 16px;
    background: #f0f2f7;
    border-radius: 8px;
    white-space: nowrap;
}

.bop-amount-ui {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.bop-amount-chip {
    padding: 9px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 9px;
    cursor: pointer;
    font-size: 13px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #6b7280;
    font-weight: 500;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.bop-amount-chip:hover {
    border-color: #764ba2;
    background: #fafafa;
    color: #764ba2;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(36, 43, 69, 0.08);
}

.bop-amount-chip.active {
    border-color: #764ba2;
    background: #764ba2;
    color: #fff;
    font-weight: 600;
    padding-right: 30px;
    transform: scale(1.02);
    box-shadow: 0 3px 8px rgba(36, 43, 69, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.bop-amount-clear {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #764ba2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
}

.bop-amount-chip.active .bop-amount-clear {
    opacity: 1;
    transform: scale(1);
}

.bop-amount-clear:hover {
    background: #fee2e2;
    border-color: #ef4444;
    transform: scale(1.1);
}

.bop-amount-clear::before,
.bop-amount-clear::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 1.5px;
    background: #764ba2;
}

.bop-amount-clear::before {
    transform: rotate(45deg);
}

.bop-amount-clear::after {
    transform: rotate(-45deg);
}

.bop-amount-clear:hover::before,
.bop-amount-clear:hover::after {
    background: #ef4444;
}

.bop-overview {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
}

.bop-overview.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.bop-overview-left {
    flex: 1;
    min-width: 0;
}

.bop-overview-label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.bop-overview-value {
    font-size: 26px;
    font-weight: 700;
    color: #764ba2;
    letter-spacing: -0.02em;
    margin-top: -2px;
}

.bop-overview-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    flex-shrink: 0;
}

.bop-overview-bonus {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #e8ecf5;
    border: none;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 700;
    color: #764ba2;
    white-space: nowrap;
}

.bop-overview-bonus.show {
    display: inline-flex;
}

.bop-overview-total {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .bop-method-card {
        padding: 15px 18px;
        gap: 12px;
    }
    .bop-method-card img {
        width: 30px;
        height: 30px;
    }
    .bop-overview {
        padding: 16px 18px;
    }
    .bop-overview-value {
        font-size: 24px;
    }
    .bop-bonus-tiers {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .bop-method-card {
        padding: 14px 12px;
        width: 100%;
        justify-content: flex-start;
        gap: 8px;
        border-width: 1.5px;
        display: flex;
        max-width: 100%;
        min-width: 0;
    }
    .bop-method-card img {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
    }
    .bop-method-card span {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.3;
    }
    .bop-bonus-header.show {
        max-height: 90px;
        padding: 12px 16px;
    }
    .bop-bonus-tiers {
        gap: 8px;
    }
    .bop-bonus-tier {
        padding: 10px 16px;
        gap: 10px;
    }
    .bop-bonus-tier-amount {
        font-size: 12px;
    }
    .bop-bonus-tier-pct {
        font-size: 15px;
        padding: 5px 12px;
    }
    .bop-amount-ui {
        gap: 6px;
    }
    .bop-amount-chip {
        padding: 6px 12px;
        font-size: 11.5px;
    }
    .bop-overview {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 14px;
        gap: 12px;
    }
    .bop-overview-left {
        flex: 1;
        min-width: 0;
    }
    .bop-overview-value {
        font-size: 20px;
    }
    .bop-overview-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
        text-align: right;
    }
    .bop-overview-bonus {
        padding: 6px 12px;
        font-size: 11px;
    }
    .bop-overview-total {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .bop-method-card {
        padding: 10px 8px;
        gap: 6px;
        display: flex;
        max-width: 100%;
        min-width: 0;
        border-width: 1.5px;
    }
    .bop-method-card img {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    .bop-method-card span {
        font-size: 11px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.3;
    }
    .bop-method-check {
        top: 8px;
        right: 8px;
        width: 16px;
        height: 16px;
    }
    .bop-method-check::before {
        font-size: 10px;
    }
    .bop-bonus-header.show {
        max-height: 85px;
        padding: 12px 14px;
    }
    .bop-bonus-header-title {
        font-size: 13px;
    }
    .bop-bonus-header-title::before {
        font-size: 16px;
    }
    .bop-bonus-toggle {
        font-size: 11px;
        padding: 4px 10px;
    }
    .bop-bonus-tiers {
        gap: 6px;
    }
    .bop-bonus-tier {
        padding: 10px 14px;
        gap: 8px;
    }
    .bop-bonus-tier-amount {
        font-size: 12px;
    }
    .bop-bonus-tier-pct {
        font-size: 14px;
        padding: 5px 10px;
    }
    .bop-section-title {
        font-size: 13px;
        margin-bottom: 12px;
    }
    .bop-amount-chip {
        padding: 6px 11px;
        font-size: 11px;
    }
    .bop-overview {
        padding: 12px;
        gap: 10px;
        flex-direction: row;
        justify-content: space-between;
    }
    .bop-overview-left {
        flex: 1;
        min-width: 0;
    }
    .bop-overview-value {
        font-size: 18px;
    }
    .bop-overview-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
        text-align: right;
        flex-shrink: 0;
    }
    .bop-overview-bonus {
        padding: 5px 10px;
        font-size: 10px;
    }
    .bop-overview-total {
        font-size: 9px;
    }
}

#block_20 .ticket-form {
    width: 100%;
}

#block_20 .ticket-form>.container {
    width: 100% !important;
    max-width: 100% !important;
}


    .modal-backdrop {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1040;
        background-color: #000;
    }

    .modal-backdrop.in {
        opacity: .5;
    }

    .modal-backdrop.fade {
        opacity: 0;
    }

    .modal-backdrop.show {
        opacity: 0.5;
    }

    .binance-modal .center-block {
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

    .binance-modal .binance-btn-block {
        display: block;
        width: 100%;
    }

    .binance-modal.modal {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
        font-size: 14px !important;
        line-height: 1.42857143 !important;
        color: #333 !important;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1050;
        display: none;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
        outline: 0;
    }

    .modal-open .binance-modal.modal {
        overflow-x: hidden;
        overflow-y: auto;
    }

    .binance-modal .binance-modal-dialog-scrollable {
        display: flex;
        max-height: calc(100% - 1rem) !important;
        height: auto !important;
    }

    .binance-modal .binance-alert {
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid transparent;
        border-radius: 4px;
    }

    .binance-modal .binance-alert-danger {
        color: #a94442;
        background-color: #f2dede;
        border-color: #ebccd1;
    }

    .binance-modal .binance-alert-success {
        color: #3c763d;
        background-color: #dff0d8;
        border-color: #d6e9c6;
    }

    .binance-modal .binance-modal-dialog-scrollable .binance-modal-content {
        background-color: #fff !important;
        max-height: calc(100vh - 1rem);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        width: 100%;
        border: none !important;
        border-radius: 6px;
        outline: 0;
        position: relative;
        background-clip: padding-box;
        pointer-events: auto;
    }

    .binance-modal .binance-modal-dialog-scrollable .binance-modal-body {
        background-color: #fff !important;
        overflow-y: auto;
        position: relative;
        padding: 15px;
    }

    .binance-modal .binance-modal-dialog-scrollable .binance-modal-header {
        padding: 15px;
        border-bottom: 1px solid #E6E6E6;
    }

    .binance-modal .binance-modal-dialog-scrollable .binance-modal-header .binance-btn-close {
        float: right;
        font-size: 21px;
        font-weight: bold;
        line-height: 1;
        color: #000;
        text-shadow: 0 1px 0 #fff;
        filter: alpha(opacity=20);
        opacity: .2;
        appearance: none;
        padding: 0;
        cursor: pointer;
        background: transparent;
        border: 0;
        margin-top: -2px;
    }

    .binance-modal .binance-modal-dialog-scrollable .binance-modal-footer {
        padding: 15px;
        text-align: right;
        border-top: 1px solid #E6E6E6;
    }

    .binance-modal .binance-modal-dialog-scrollable .binance-modal-footer,
    .binance-modal .binance-modal-dialog-scrollable .binance-modal-header {
        background-color: #fff !important;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .binance-modal .binance-modal-title {
        float: left;
        margin: 0;
    }

    .binance-modal .binance-steps {
        display: flex;
        align-items: center;
        margin-top: 32px;
    }

    .binance-modal .binance-step {
        flex: 1 0 auto;
        text-align: center;
        position: relative;
        display: flex;
    }

    .binance-modal .binance-step-wrap {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        margin-top: -12px;
    }

    .binance-modal .binance-step .binance-step-line {
        flex: 1;
        height: 1px;
    }

    .binance-modal .binance-step.start .binance-step-line.before {
        background: linear-gradient(to right, white, #337AB7) !important;
    }

    .binance-modal .binance-step.start .binance-step-line.after {
        flex: 0.2;
        background: #337AB7 !important;
    }

    .binance-modal .binance-step.end .binance-step-line.after {
        background: linear-gradient(to left, white, #337AB7) !important;
    }

    .binance-modal .binance-step.end .binance-step-line.before {
        flex: 0.2;
        background: #337AB7 !important;
    }

    .binance-modal .binance-step-num {
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: #ADADAD !important;
        color: #fff;
        position: relative;
    }

    .binance-modal .binance-step-wrap::after,
    .binance-modal .binance-step-wrap::before {
        content: "";
        position: absolute;
        top: 12px;
        height: 1px;
        background: #337AB7 !important;
    }

    .binance-modal .binance-step-wrap::before {
        left: 0;
        width: 35%;
    }

    .binance-modal .binance-step-wrap::after {
        right: 0;
        width: 35%;
    }

    .binance-modal .binance-step-num.active {
        background-color: #337AB7 !important;
    }

    .binance-modal .binance-step-num.success {
        background: transparent;
        border: 1.5px solid #57B18C !important;
    }

    .binance-modal .binance-step-num.success .fa-check {
        color: #57B18C !important;
        font-size: 12px;
    }

    .binance-modal .binance-step-label {
        margin-top: 4px;
        white-space: nowrap;
    }

    .binance-amount {
        padding: 24px;
        text-align: center;
    }

    .binance-amount-value {
        font-weight: 700;
        font-size: 32px;
    }

    .binance-currency-value {
        font-weight: 500;
        font-size: 24px;
    }

    .binance-pay-instruction,
    .binance-verify-instruction {
        background-color: #F2F2F2;
        padding: 24px 16px;
        border-radius: 4px;
    }

    .binance-pay-instruction img {
        width: 140px;
        height: 140px;
        object-fit: contain;
    }

    .binance-verify-instruction img {
        width: 183px;
        height: 200px;
        object-fit: contain;
    }

    .binance-pay-instruction-text,
    .binance-verify-instruction-text {
        margin-top: 24px;
    }

    .binance-pay-instruction-text p:last-child {
        margin-bottom: 0px;
    }

    .binance-verify-instruction p:last-child {
        margin-bottom: 0px;
    }

    .binance-amount-uuid {
        margin-top: 24px;
        margin-bottom: 16px;
        padding: 8px 16px;
        display: flex;
        align-items: center;
        background-color: #F2F2F2;
        border-radius: 4px;
    }

    .binance-amount-uuid .amount-currency,
    .binance-amount-uuid .uuid {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .binance-amount-uuid .amount-currency .amount-label,
    .binance-amount-uuid .uuid .uuid-label {
        font-size: 10px !important;
        color: #767676 !important;
        margin-bottom: 4px;
    }

    .binance-amount-uuid .amount-currency .amount-block .binance-amount-value,
    .binance-amount-uuid .amount-currency .amount-block .binance-currency-value {
        font-size: 14px !important;
        word-break: break-all;
        font-weight: 400 !important;
    }

    .binance-amount-uuid .uuid .uuid-block {
        font-size: 14px !important;
    }

    .binance-amount-uuid .uuid .binance-uuid-value-copy {
        display: inline-block;
        margin-left: 6px;
        padding: 0px;
        outline: none;
        border: none;
        margin: 0;
        box-shadow: none;
        color: #337AB7;
    }

    .binance-modal .binance-btn {
        display: inline-block;
        padding: 6px 12px;
        margin-bottom: 0;
        font-size: 14px;
        font-weight: normal;
        line-height: 1.42857143;
        text-align: center;
        white-space: nowrap;
        vertical-align: middle;
        -ms-touch-action: manipulation;
        touch-action: manipulation;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-image: none;
        border: 1px solid transparent;
        border-radius: 4px;
    }

    .binance-modal .binance-btn.disabled {
        pointer-events: none;
        box-shadow: none;
        opacity: 0.65;
    }

    .binance-modal .binance-btn-block {
        display: block;
        width: 100%;
    }

    .binance-modal .binance-btn-primary {
        color: #fff;
        background-color: #337ab7;
        border-color: #2e6da4;
    }

    .binance-modal .binance-btn-primary:hover {
        background-color: #286090;
        border-color: #204d74;
    }

    .binance-modal .binance-btn-default {
        color: #333;
        background-color: #fff;
        border-color: #ccc;
    }

    .binance-modal .binance-btn-default:hover {
        color: #333;
        border-color: #8c8c8c;
    }

    .binance-modal button[type='submit'] {
        .fa-spinner-third {
            animation: spinner .6s linear infinite;
        }
    }

    .binance-modal button[type='submit'] .fa-spinner-third {
        margin-right: 8px;
    }

    .binance-modal .binance-input-group>.binance-input-group-btn {
        padding: 0 !important;
        width: 1%;
        white-space: nowrap;
        vertical-align: middle;
        position: relative;
        font-size: 0;
        display: table-cell;
    }

    .binance-modal .binance-input-group-btn:last-child>.binance-btn {
        z-index: 2;
        margin-left: -1px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .binance-modal .binance-form-group {
        margin-bottom: 15px;
    }

    .binance-modal .binance-form-group .binance-input-group {
        position: relative;
        display: table;
        border-collapse: separate;
    }

    .binance-modal label {
        display: inline-block;
        max-width: 100%;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .binance-modal .binance-form-control {
        display: block;
        width: 100%;
        height: 34px;
        padding: 6px 12px;
        font-size: 14px;
        line-height: 1.42857143;
        color: #555;
        background-color: #fff;
        background-image: none;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    }

    .binance-modal .binance-form-control:focus {
        border-color: #66afe9;
        outline: 0;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    }

    .binance-modal .binance-form-control:read-only {
        background-color: #eee;
        opacity: 1;
    }

    .binance-modal .binance-input-group .binance-form-control {
        position: relative;
        z-index: 2;
        float: left;
        width: 100%;
        margin-bottom: 0;
    }

    .binance-modal .binance-input-group .binance-form-control {
        display: table-cell;
    }

    .binance-input-group .binance-form-control:first-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    @media (min-width: 768px) {
        .binance-modal .modal-dialog {
            width: 460px;
            margin: 30px auto;
        }
    }



/* Currency Dropdown Styles */
.custom-currency-dropdown {
  min-width: 180px;
  padding: 8px 0;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  border: none;
  margin-top: 5px;
  z-index: 1000;
  overflow: hidden;
}

/* Dropdown List Items */
.custom-currency-dropdown li {
  padding: 8px 16px;
  cursor: pointer;
  color: #333;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

/* Hover Effect */
.custom-currency-dropdown li:hover {
  background-color: #f6f6f6;
  color: #dc3545; /* Optional: Make it match btn-danger */
  font-weight: 500;
}



/* Responsive fix for mobile */
@media (max-width: 576px) {
  .custom-currency-dropdown {
    min-width: 140px;
    font-size: 13px;
  }
}


  
    .banner_login_part {
        padding: 9px 10px !important;
    }

        h4, .h4 {
    font-size: 20px !important;
    font-weight: 800 !important;
}
                   .bg_sidebars {
  position: absolute;
  bottom: -155px;
  left: 0;
  pointer-events: none;
  opacity: 0.4;
  z-index: -1;
}
.bg_sidebars img {
  width: 120%;
}
                   @media only screen and (max-width: 550px) {
                     .bg_sidebars {
    bottom: -229px;
    left: -14px;
                     }}
.offcanvas {
    transform: translateX(-100%) !important;
  left: 0 !important;
  right: auto !important;
  visibility: hidden  !important;
    opacity: 0 !important;
}

.offcanvas.show {
    transform: translateX(0) !important;
  visibility: visible !important;
    opacity: 1 !important;
}
          .daymode .navbar-nav li a, .daymode .text-white, .daymode .footer_main_info p, .daymode #counter .counter__item h4, .daymode .footer_main_info p, .daymode .footer_link_wrap h4, .daymode .footer_menu .footer_menu_item, .daymode .contact_item .contact_text, .daymode .contact_item .contact_text a, .daymode .copyright_text, .daymode .counter__item p {
            color:var(--bs-body-bg) !important;
          }
                
          .daymode .navbar-nav li a.active {
            color:var(--primary-color) !important;
          }
         /* Counter Section */
#counter {
  background: transparent;
}
          .daymode #counter {
           background: transparent !important;
          }
#counter .counter__item {
  text-align: center;
}

#counter .counter__item .icon {
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 90px;
  margin-bottom: 15px;
  background: var(--primary-color);
  box-shadow: 0 0 10px #e0e0e000;
}

#counter .counter__item h4 {
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
  font-weight: bold;
}

#counter .counter__item p {
  font-size: 18px;
  color: var(--white);
  font-weight: 400;
}


.contact_item {
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
  margin-bottom: 20px !important;
}

.contact_item .contact_icon {
  min-width: 60px !important;
  height: 60px !important;
  background: var(--primary-color) !important;
  line-height: 60px !important;
  text-align: center;
  border-radius: 60px !important;
}

.contact_item .contact_text {
  font-size: 16px !important;
  color: #e4e4e4 !important;
}

.contact_item .contact_text a {
  color: #e4e4e4 !important;
}

.contact-us-page-links {
  display: flex !important;
  gap: 20px !important;
  align-items: center !important;
  list-style-type: none !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}

.contact-us-page-links li a {
  text-decoration: none !important;
  background: #fff !important;
  color: var(--black-title) !important;
  padding: 10px 20px !important;
  border-radius: 7px !important;
  box-shadow: 0 0 10px #ddd !important;
  transition: 0.5s !important;
}
 :root{
        --primary-color: linear-gradient(135deg, #667eea 0%, #764ba2 100%); !important;
  }
        .al, .nav_servicess .nav-link{
          justify-content: space-between !important;
        }
.contact-us-page-links li a:hover {
  background: var(--primary-color) !important;
  color: var(--white) !important;
}
          .d-none-tab, .d-none-ph {
            display: none !important;
          }
          @media only screen and (min-width: 992px) {
          .d-none-ph {
            display: flex !important;
          }
            .ms-auto.nav_right {
              display: flex !important; gap: 5px !important; float: right !important; right: 10px !important;left: auto !important;
            }
            
          }
@media only screen and (max-width: 1700px) {
 
  .count__2__type h3 {
    font-size: 35px !important;
  }
  #followStep .followStep-image img {
    height: 500px !important;
    margin-top: 60px !important;
  }
   #counter .counter__item h4 {
    font-size: 24px;
  }
  #counter .counter__item p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1440px) {
 .footer_main_info p {
    font-size: 14px !important;
  }
  .count__2__type h3 {
    font-size: 35px !important;
  }
  #followStep .followStep-image img {
    height: 500px !important;
    margin-top: 60px !important;
  }
  #counter .counter__item h4 {
    font-size: 24px;
  }
   #counter .counter__item p {
    font-size: 16px;
  }
}
          @media only screen and (max-width: 1200px) { 
            
            #counter .counter__item h4 {
    font-size: 22px;
  } 
          }
@media only screen and (max-width: 991px) { 
 .footer_link_wrap,
  .footer_main_info {
    margin-bottom: 40px !important;
  }
  
 #counter .counter__item h4 {
    font-size: 24px;
  }
  #ourExpert .container > .row {
    display: flex !important;
    flex-direction: column-reverse !important;
    text-align: center !important;
  }
  .expert_image {
    margin-top: 30px !important;
    text-align: center !important !important;
  }
  .expert_image img {
    width: 400px !important;
  }
  .card_core_value {
    margin-bottom: 35px !important;
  }
  #followStep .followStep-image {
    position: relative !important;
  }
  .follow_step_get .container .row {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
  #followStep .followStep-image img {
    height: auto !important;
    border-radius: 20px !important;
  }
  #followStep .how_step_wrap {
    padding: 0 !important;
  }  
   .d-none-tab {
    display: flex !important;
     
  }
  .right {
   display: flex !important; gap: 5px !important; float: right !important; right: 10px !important;left: auto !important;
    width: auto !important;
  }
}
          @media only screen and (max-width: 786px) {
            #counter .counter__item h4 {
    font-size: 20px;
  }
          }
  @media only screen and (max-width: 550px) {
  .footer_main_info .logo-white {
    text-align: center !important;
  }
    .logo_navbar {
      width: 140px !important;
    }
     #counter {
    padding: 45px 0px;
  }
    #counter .counter__item .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
  #counter .counter__item .icon > img {
    width: 40px;
    height: 40px;
  }
  #counter .counter__item h4 {
    font-size: 18px;
  }
    #counter .counter__item p {
    font-size: 14px;
  }
  .footer_main_info p {
    text-align: center !important;
  }
  .footer_main_info .logo-white > img {
    width: 170px !important;
  }
  .social_media_links {
    justify-content: center !important;
  }
  .count__2__type h3 {
    font-size: 28px !important;
  }
  .card_core_value {
    height: auto !important;
  }
  .card_core_value .core__icon.credit-card-icon img {
    width: 120px !important;
  }
  .location_pin_find img {
    width: 135px !important;
  }
  #page__title p {
    width: 100% !important;
  }
  #page__title {
    padding: 40px 0px 40px 0px !important;
  }   
}
          
      .mb-3 {
    
    margin-left: 5px !important;
}
      
      
  .offcanvas-backdrop.show {
    opacity: .5 !important;
}    
      
        a{
              text-decoration: none !important;
        }
    
@media only screen and (max-width: 992px) {
    #our_single_blog, #banner {
        padding: 88px 0px !important;
    }
}
        
@media only screen and (max-width: 550px) {
    footer {
        padding: 70px 0px 30px 0px;
    }
}
        footer {
    position: relative;
    background: #092251 !important;
    margin-top: 80px;
    padding: 80px 0px 30px 0px;
        color: #ffffff !important;
}
        @media only screen and (max-width: 550px) {
    .top-round-icon {
        top: -50px;
        left: calc(50% - 50px);
    }
}
.top-round-icon {
    position: absolute;
    top: -70px;
    left: calc(50% - 70px);
}
        @media only screen and (max-width: 550px) {
    .top-round-icon img {
        width: 100px;
        height: 100px;
    }
}
.top-round-icon img {
    width: 140px;
    height: 140px;
  border-radius: 50%;
}
        @media only screen and (max-width: 550px) {
    .footer-content {
        text-align: center;
    }
}
        .footer-content .footer-logo {
    margin-bottom: 20px;
}
        .footer-content > p {
    font-size: 14px;
    line-height: 1.5;
        color: #ffffff !important;
}
        @media only screen and (max-width: 550px) {
    .footer__quick__menu {
        display: grid
;
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 991px) {
    .footer__quick__menu {
        margin-bottom: 20px;
    }
}
        .footer-menu > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
        .footer-menu > ul li {
    margin-bottom: 5px;
}
        
        .footer-menu > ul li a {
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
      color: #ffffff !important;
    cursor: pointer;
    transition: 0.5s ease;
}
        @media only screen and (max-width: 550px) {
    .footer-contact {
        grid-template-columns: 1fr;
    }
}
@media only screen and (max-width: 991px) {
    .footer-contact {
        display: grid
;
        grid-template-columns: repeat(2, 1fr);
    }
}
        .footer-item {
    display: flex
;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}
        .footer-item .footer-icon {
    display: flex
;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 20px;
    background: var(--footer-icon-bg);
    border-radius: 50px;
}
        .footer-item .footer-address {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.4;
}
        .footer-item {
    display: flex
;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}
        .box_item{
          display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
        }
        .form-control, .form-select{
          background: #1F1F1F !important;
        }
       
input::placeholder {
    color: black; /* Change this to any color */
    opacity: 1; /* Fully visible */
}

        .daymode #banner {
    background: linear-gradient(#EAF5F5, #eaf5f575), url(https://i.23robo.info/projects/growfollows/img/top-bg.webp); 
    background-size: cover;
    background-position: center bottom;
        }
        .daymode .banner_login_part{
          background: none !important;
    backdrop-filter: blur(20px);
    border: 0px !important;
    box-shadow: 0 0px 10px rgb(19 27 38 / 17%);

        }
        
       .offcanvas-body .user_box, #dashboard #sidebar .user_box {
    margin: 10px 30px;
    text-align: center;
    padding: 20px 15px;
    border-radius: 15px;
    border: 1px solid var(--bs-success);
   
    background-color: #161616;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
} 
     .custom-currency-dropdown {
  max-height: 200px; 
  overflow-y: auto;
  overflow-x: hidden;
  width: max-content; 
}
   
        
      