
    :root {
        --primary-color: #f59638;
        --primary-dark: #f59638;
        --primary-light: #f59638;
        --success-color: #00b96b;
        --warning-color: #faad14;
        --danger-color: #ff4d51;
        --info-color: #1890ff;
        --light-gray: #f5f5f5;
        --lighter-gray: #fafafa;
        --border-color: #d9d9d9;
        --text-primary: #262626;
        --text-secondary: #8c8c8c;
        --text-tertiary: #bfbfbf;
    }
    
    * {
        transition: color 0.2s, background-color 0.2s, border-color 0.2s ease;
    }
    
    .aliex-header {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: #fff;
        padding: 40px 0;
        margin-bottom: 32px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }
    
    .aliex-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }
    
    .aliex-profile-card {
        display: flex;
        align-items: center;
        gap: 24px;
        background: #fff;
        padding: 32px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        position: relative;
        z-index: 1;
    }
    
    .aliex-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid var(--primary-color);
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    }
    
    .aliex-user-info {
        flex: 1;
    }
    
    .aliex-user-info h3 {
        margin: 0 0 6px;
        color: var(--text-primary);
        font-weight: 700;
        font-size: 18px;
    }
    
    .aliex-user-info p {
        margin: 4px 0;
        color: var(--text-secondary);
        font-size: 14px;
    }
    
    .aliex-vip {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, var(--success-color) 0%, #3cb371 100%);
        color: #fff;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-top: 8px;
        box-shadow: 0 2px 6px rgba(0, 185, 107, 0.2);
    }
    
    .aliex-vip.unverified {
        background: linear-gradient(135deg, var(--text-tertiary) 0%, #999 100%);
    }
    
    .aliex-stats {
        display: flex;
        gap: 24px;
        margin-top: 16px;
        flex-wrap: wrap;
    }
    
    .aliex-stat-item {
        text-align: center;
        min-width: 80px;
    }
    
    .aliex-stat-value {
        font-size: 28px;
        font-weight: 700;
        color: var(--primary-color);
        line-height: 1.5;
    }
    
    .aliex-stat-label {
        font-size: 13px;
        color: var(--text-secondary);
        margin-top: 6px;
        font-weight: 500;
    }
    
    .aliex-container {
        background-color: var(--lighter-gray);
        max-width: 100%;
        margin: 0 auto;
        padding: 0px 16px 20px 16px;
    }
    
    .aliex-main {
        padding-top: 20px;
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .aliex-sidebar {
        position: relative;
        height: fit-content;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        overflow: hidden;
    }
    
    /* Mobile Menu Toggle */
    .aliex-menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
        color: var(--text-primary);
    }
    
    .aliex-menu-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .aliex-menu-backdrop.show {
        display: block;
    }
    
    .aliex-menu-group {
        margin-bottom: 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .aliex-menu-group:last-child {
        border-bottom: none;
    }
    
    .aliex-menu-title {
        font-size: 11px;
        font-weight: 700;
        color: var(--text-tertiary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 12px 16px 8px;
        margin: 0;
    }
    
    .aliex-menu-item {
        padding: 5px 16px;
        color: var(--text-primary);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 12px;
        border-left: 3px solid transparent;
        transition: all 0.2s ease;
        font-size: 14px;
        font-weight: 500;
        user-select: none;
        -webkit-user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .aliex-menu-item i {
        font-size: 16px;
        width: 20px;
        text-align: center;
        color: var(--text-secondary);
    }
    
    .aliex-menu-item:hover {
        background: var(--lighter-gray);
        border-left-color: var(--primary-color);
        color: var(--primary-color);
    }
    
    .aliex-menu-item:hover i {
        color: var(--primary-color);
    }
    
    .aliex-menu-item:active {
        background: rgba(255, 107, 53, 0.08);
    }
    
    .aliex-menu-item.active {
        background: var(--lighter-gray);
        border-left-color: var(--primary-color);
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .aliex-menu-item.active i {
        color: var(--primary-color);
    }
    
    .aliex-content {
        background: #fff;
        border-radius: 12px;
        padding: 15px !important;
        animation: fadeIn 0.3s ease-in;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .aliex-content-title {
        font-size: 22px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 2px solid var(--border-color);
    }
    
    .aliex-cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .aliex-card {
        background: var(--lighter-gray);
        padding: 24px 16px;
        border-radius: 12px;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }
    
    .aliex-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s;
    }
    
    .aliex-card:hover::before {
        left: 100%;
    }
    
    .aliex-card:hover {
        transform: translateY(-6px);
        border-color: var(--primary-color);
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
    }
    
    .aliex-card:active {
        transform: translateY(-2px);
    }
    
    .aliex-card-icon {
        font-size: 32px;
        margin-bottom: 12px;
        display: block;
    }
    
    .aliex-card-title {
        font-weight: 600;
        color: var(--text-secondary);
        font-size: 13px;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    
    .aliex-card-value {
        font-size: 28px;
        font-weight: 700;
        color: var(--primary-color);
    }
    
    .aliex-btn {
        background: var(--primary-color);
        color: #fff;
        border: none;
        padding: 12px 24px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        box-shadow: 0 2px 6px rgba(255, 107, 53, 0.2);
    }
    
    .aliex-btn:hover {
        background: var(--primary-dark);
        color: #fff;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        transform: translateY(-2px);
    }
    
    .aliex-btn:active {
        transform: scale(0.98);
    }
    
    .aliex-btn-outline {
        background: transparent;
        color: var(--primary-color);
        border: 1px solid var(--border-color);
        box-shadow: none;
    }
    
    .aliex-btn-outline:hover {
        background: var(--lighter-gray);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
    
    .aliex-btn-small {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .aliex-orders-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
    }
    
    .aliex-orders-table th {
        background: var(--lighter-gray);
        padding: 14px 12px;
        text-align: left;
        font-weight: 700;
        color: var(--text-primary);
        border-bottom: 2px solid var(--border-color);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    
    .aliex-orders-table td {
        padding: 14px 12px;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-secondary);
    }
    
    .aliex-orders-table tr:hover {
        background: var(--lighter-gray);
    }
    
    .aliex-status {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: capitalize;
    }
    
    .status-pending {
        background: rgba(250, 173, 20, 0.1);
        color: var(--warning-color);
    }
    
    .status-processing {
        background: rgba(24, 144, 255, 0.1);
        color: var(--info-color);
    }
    
    .status-shipped {
        background: rgba(0, 185, 107, 0.1);
        color: var(--success-color);
    }
    
    .status-delivered {
        background: rgba(0, 185, 107, 0.1);
        color: var(--success-color);
    }
    
    .status-cancelled {
        background: rgba(255, 77, 81, 0.1);
        color: var(--danger-color);
    }
    
    .status-returned {
        background: rgba(255, 77, 81, 0.1);
        color: var(--danger-color);
    }
    
    .aliex-empty {
        text-align: center;
        padding: 60px 20px;
        color: var(--text-secondary);
    }
    
    .aliex-empty-icon {
        font-size: 80px;
        margin-bottom: 16px;
        opacity: 0.4;
    }
    
    .aliex-empty p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    /* Report status badge styles */
    .report-status-badge {
        display: inline-block;
    }

    .report-status-resolved {
        background: #d4edda;
        color: #155724;
    }

    .report-status-pending {
        background: #cce5ff;
        color: #004085;
    }

    .report-status-rejected {
        background: #f8d7da;
        color: #721c24;
    }
    
    .aliex-conversations {
        display: flex;
        gap: 0;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        height: 500px;
    }
    
    .aliex-conv-list {
        flex: 0 0 35%;
        border-right: 1px solid var(--border-color);
        overflow-y: auto;
    }
    
    .aliex-conv-item {
        padding: 12px;
        border-bottom: 1px solid var(--border-color);
        cursor: pointer;
        transition: background 0.2s;
    }
    
    .aliex-conv-item:hover {
        background: var(--light-gray);
    }
    
    .aliex-conv-item.active {
        background: var(--light-gray);
        border-left: 3px solid var(--primary-color);
    }
    
    .aliex-conv-user {
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 4px;
    }
    
    .aliex-conv-msg {
        font-size: 13px;
        color: var(--text-secondary);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .aliex-conv-panel {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .aliex-conv-header {
        padding: 12px 16px;
        border-bottom: 1px solid var(--border-color);
        font-weight: 600;
    }
    
    .aliex-conv-messages {
        flex: 1;
        overflow-y: auto;
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .aliex-conv-form {
        padding: 12px 16px;
        border-top: 1px solid var(--border-color);
    }
    
    @media (max-width: 768px) {
        :root {
            --text-tertiary: #bfbfbf;
        }
        
        .aliex-menu-toggle {
            display: block;
        }
        
        .aliex-main {
            grid-template-columns: 1fr;
        }
        
        .aliex-sidebar {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            max-width: 280px;
            height: 100vh;
            background: #fff;
            overflow-y: auto;
            transition: left 0.3s ease;
            z-index: 1000;
            box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
            border-radius: 0;
            padding-top: 60px;
        }
        
        .aliex-sidebar.show {
            left: 0;
        }
        
        .aliex-menu-backdrop.show {
            display: block;
        }
        
        .aliex-header {
            padding: 24px 0 20px;
            margin-bottom: 20px;
        }
        
        .aliex-profile-card {
            flex-direction: column;
            text-align: center;
            padding: 20px;
            gap: 16px;
        }
        
        .aliex-avatar {
            width: 80px;
            height: 80px;
            border-width: 3px;
        }
        
        .aliex-user-info h3 {
            font-size: 16px;
        }
        
        .aliex-user-info h4 {
            font-size: 14px;
        }
        
        .aliex-stats {
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 12px;
            gap: 16px;
        }
        
        .aliex-content {
            padding: 20px;
            border-radius: 8px;
        }
        
        .aliex-content-title {
            font-size: 18px;
            margin-bottom: 16px;
        }
        
        .aliex-cards-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 24px;
        }
        
        .aliex-card {
            padding: 16px 12px;
        }
        
        .aliex-card-value {
            font-size: 24px;
        }
        
        .aliex-btn {
            padding: 10px 16px;
            font-size: 13px;
            width: 100%;
        }
        
        .aliex-btn.ms-3 {
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        
        .aliex-orders-table {
            font-size: 12px;
        }
        
        .aliex-orders-table th,
        .aliex-orders-table td {
            padding: 10px 8px;
        }
    }
    
    @media (max-width: 480px) {
        .aliex-header {
            padding: 16px 0 12px;
        }
        
        .aliex-container {
            padding: 0 12px;
        }
        
        .aliex-profile-card {
            padding: 12px;
            gap: 12px;
        }
        
        .aliex-avatar {
            width: 70px;
            height: 70px;
        }
        
        .aliex-user-info h3 {
            font-size: 14px;
        }
        
        .aliex-user-info h4 {
            font-size: 13px;
        }
        
        .aliex-user-info p {
            font-size: 12px;
        }
        
        .aliex-stats {
            gap: 12px;
        }
        
        .aliex-stat-item {
            min-width: 60px;
        }
        
        .aliex-stat-value {
            font-size: 20px;
        }
        
        .aliex-stat-label {
            font-size: 11px;
        }
        
        .aliex-content {
            padding: 16px;
        }
        
        .aliex-content-title {
            font-size: 16px;
            margin-bottom: 16px;
        }
        
        h2 {
            font-size: 16px;
        }
        
        h3 {
            font-size: 14px;
        }
        
        .aliex-cards-grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }
        
        .form-control,
        .form-select {
            font-size: 14px;
            padding: 10px;
        }
        
        .form-label {
            font-size: 12px;
            margin-bottom: 6px;
        }
        
        .card {
            border-radius: 8px;
        }
        
        .modal-dialog {
            margin: 20px 12px;
        }
        
        .aliex-btn,
        .btn {
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        
        .row {
            margin: 0 -8px;
        }
        
        .col-md-6 {
            padding: 0 6px;
            margin-bottom: 12px;
        }
        
        .aliex-orders-table {
            font-size: 11px;
        }
        
        .aliex-orders-table th,
        .aliex-orders-table td {
            padding: 8px 6px;
        }
        
        .aliex-sidebar {
            max-width: 100%;
            padding-top: 50px;
        }
        
        .aliex-empty {
            padding: 50px 20px;
            background: #fff;
            border-radius: 12px;
            margin: 12px;
        }
        
        .aliex-empty-icon {
            font-size: 64px;
            margin-bottom: 12px;
        }

        .aliex-empty p {
            font-size: 14px;
            margin-bottom: 16px;
        }

        .aliex-btn {
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 600;
        }
    }
    
    /* Smooth transitions */
    .tab-pane {
        transition: opacity 0.3s ease;
    }
    
    /* Loading state */
    .spinner-border {
        width: 2rem;
        height: 2rem;
        border-width: 0.2rem;
        color: var(--primary-color);
    }
    
    /* Tooltip for menu items */
    .aliex-menu-item:hover::after {
        content: attr(data-tooltip);
        position: absolute;
        left: 100%;
        margin-left: 10px;
        background: var(--text-primary);
        color: #fff;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        animation: tooltipFade 0.2s ease forwards;
    }
    
    @keyframes tooltipFade {
        to { opacity: 1; }
    }
    
    @media (max-width: 768px) {
        .aliex-menu-item:hover::after {
            display: none;
        }
    }
    
    /* Highlight active tab content */
    .tab-pane.active {
        animation: slideIn 0.4s ease;
    }
    
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Badge for unread messages */
    .aliex-badge {
        position: absolute;
        top: 8px;
        right: 8px;
        background: var(--primary-color);
        color: #fff;
        border-radius: 10px;
        padding: 2px 6px;
        font-size: 10px;
        font-weight: 700;
    }
    
    /* Table responsive styling */
    .table-responsive {
        overflow-x: auto;
        margin: 0 -16px;
        padding: 0 16px;
    }
    
    @media (max-width: 768px) {
        .table-responsive {
            margin: 0 -16px;
            padding: 0 16px;
        }
        
        .aliex-orders-table {
            min-width: 600px;
        }
    }
    
    /* Bottom Navigation for Mobile */
    .aliex-bottom-nav {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--border-color);
        padding: 8px 0;
        padding-bottom: max(8px, env(safe-area-inset-bottom));
        z-index: 100;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
        animation: slideUp 0.3s ease;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .aliex-bottom-nav-items {
        display: flex;
        justify-content: space-around;
        gap: 4px;
    }
    
    .aliex-bottom-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 8px 4px;
        text-decoration: none;
        color: var(--text-secondary);
        font-size: 11px;
        transition: all 0.2s ease;
        border: none;
        background: none;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    
    .aliex-bottom-nav-item:hover,
    .aliex-bottom-nav-item.active {
        color: var(--primary-color);
    }
    
    .aliex-bottom-nav-item i {
        font-size: 20px;
    }
    
    /* Smooth page transitions */
    * {
        box-sizing: border-box;
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    /* Better text rendering */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Touch-friendly elements */
    button,
    a,
    input[type="checkbox"],
    input[type="radio"],
    select {
        min-height: 4px;
    }
    
    /* Form Styling */
    .form-control,
    .form-select {
        border: 1px solid var(--border-color);
        border-radius: 6px;
        transition: all 0.2s ease;
        font-size: 14px;
    }
    
    .form-control:focus,
    .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    }
    
    /* Selection color */
    ::selection {
        background-color: rgba(255, 107, 53, 0.3);
        color: var(--text-primary);
    }
    
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: var(--lighter-gray);
    }
    
    ::-webkit-scrollbar-thumb {
        background: var(--border-color);
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: var(--text-tertiary);
    }
    
    /* Badge styling */
    .badge {
        background-color: var(--primary-color);
        border-radius: 6px;
        padding: 4px 9px;
        font-size: 11px;
        font-weight: 500;
    }
    
    .badge-success {
        background-color: var(--success-color);
    }
    
    .badge-warning {
        background-color: var(--warning-color);
    }
    
    .badge-danger {
        background-color: var(--danger-color);
    }
    
    .badge-info {
        background-color: var(--info-color);
    }
    
    @media (max-width: 768px) {
        .aliex-bottom-nav {
            display: block;
        }
        
        .tab-content {
            padding-bottom: 0px;
            max-width: 100% !important;
        }
    }

@media (min-width: 768px) {
    .hero-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}
@media (min-width: 768px) {
    .hero-list .colspan-2 {
        grid-column: span 2;
    }
}

.hero-card {
    position: relative;
}
.hero-card .card-content {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
}

.hero-list {
    display: grid;
    gap: 15px;
}
.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card .img-cover {
    transition: none;
}
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
img {
    height: auto;
}

.hero-card {
     position: relative;
    background: #fff;
    /* border-radius: 20px; */
    padding: 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08); */
}
.hero-card:hover{
     position: relative;
    background: #fff;
    /* border-radius: 20px; */
    padding: 0px 0px;
    display: flex;
    border: 0px solid #e6e6e6;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08); */
} */

.detail-extralink { display:grid; gap:6px; align-items:center; margin-top:18px; }
.detail-extralink input[type=number] {
    background: #edf8ff;
    height: 32px;
    width: 100%; padding:2px 10px; border-radius:8px; border:1px solid #e6e6e6; text-align:center;
}
.detail-extralink .button-add-to-cart { padding:10px 18px; border-radius:10px; font-weight:700; display: inline-flex; align-items: center; justify-content: center; }
.detail-extralink .add-to-cart-btn { display: inline-flex; align-items: center; }


.iti {
    left: 0px;
    width: 100% !important;
    position: relative;
    display: inline-block;
}
.mbtn{
    text-align: center;
    background: #ffffff;
    border: 1px solid #ececec;
    height: 38px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 0px !important;
    font-size: 16px;
    width: 30% !important;
}

.vform-group {
    display: flex;
    margin-bottom: 1rem;
}

.iti--separate-dial-code .iti__selected-flag {
    border-radius: 8px 0px 0px 8px !important;
    background-color: rgba(236, 236, 236, 0) !important;
}
.iti__flag.iti__sd {
    height: 10px !important;
    background-position: -4405px 0px;
    margin-left: 0px !important;
}

.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 12px !important;
}

